87 lines
2.2 KiB
GLSL
87 lines
2.2 KiB
GLSL
/**
|
|
* This shader is the last piece of the graphics pipeline. EVERYTHING is passed
|
|
* through it.
|
|
*/
|
|
|
|
#version 330
|
|
|
|
// Fragment texture UV coordinate
|
|
in vec2 fragTexCoord;
|
|
|
|
// Whole input texture
|
|
uniform sampler2D texture0;
|
|
uniform vec4 colDiffuse;
|
|
|
|
// Viewport size
|
|
uniform vec2 viewport;
|
|
|
|
// Output fragment color
|
|
out vec4 finalColor;
|
|
|
|
// Pixel scaling factor (pixels per pixel)
|
|
uniform vec2 pixelScale;
|
|
|
|
// CRT effect parameters
|
|
uniform float warpFactor;
|
|
uniform float scanlineDarkness;
|
|
|
|
// Bloom parameters
|
|
uniform float bloomSamples;
|
|
uniform float bloomQuality;
|
|
|
|
void main() {
|
|
// Calculate the distance to merge pixels
|
|
float dx = pixelScale.x * (1.0 / viewport.x);
|
|
float dy = pixelScale.y * (1.0 / viewport.y);
|
|
|
|
// Calculate the squared distance from the center
|
|
vec2 dist_center_sq = abs(0.5 - fragTexCoord);
|
|
dist_center_sq *= dist_center_sq;
|
|
|
|
// Get the base UV coordinate of the pixel
|
|
vec2 baseUV = fragTexCoord;
|
|
|
|
// Calculate a UV for this new blocky pixel
|
|
vec2 pixelatedUV = vec2(dx * floor(baseUV.x / dx), dy * floor(baseUV.y / dy));
|
|
|
|
// --- BEGIN BLOOM EFFECT ---
|
|
|
|
vec2 sizeFactor = vec2(1) / viewport * bloomQuality;
|
|
vec4 textureSum = vec4(0);
|
|
|
|
const int range = 2;
|
|
for (int x = -range; x <= range; x++) {
|
|
for (int y = -range; y <= range; y++) {
|
|
textureSum += texture(texture0, fragTexCoord + vec2(x, y) * sizeFactor);
|
|
}
|
|
}
|
|
|
|
// --- BEGIN CRT SHADER ---
|
|
|
|
// Warp the UVs of the pixelated texture
|
|
vec2 warpedUV = pixelatedUV;
|
|
warpedUV.x -= 0.5;
|
|
warpedUV.x *= 1.0 + (dist_center_sq.y * (0.3 * warpFactor));
|
|
warpedUV.x += 0.5;
|
|
warpedUV.y -= 0.5;
|
|
warpedUV.y *= 1.0 + (dist_center_sq.x * (0.4 * warpFactor));
|
|
warpedUV.y += 0.5;
|
|
|
|
// If the UV is outside the texture, return black
|
|
if (warpedUV.x < 0.0 || warpedUV.x > 1.0 || warpedUV.y < 0.0 ||
|
|
warpedUV.y > 1.0) {
|
|
finalColor = vec4(0.0, 0.0, 0.0, 1.0);
|
|
return;
|
|
}
|
|
|
|
// Determine factor of if we are rendering on a scanline
|
|
float scanlineFactor =
|
|
abs(sin(fragTexCoord.y * viewport.y) * 0.5 * scanlineDarkness);
|
|
|
|
// Build the final pixel
|
|
vec4 texWithBloom =
|
|
((textureSum / (bloomSamples * bloomSamples)) + texture0) * colDiffuse;
|
|
finalColor = vec4(
|
|
mix(texture(texWithBloom, warpedUV).rgb, vec3(0.0), scanlineFactor), 1.0);
|
|
}
|