stk-code_catmod/data/shaders/tonemap.frag

24 lines
624 B
GLSL
Raw Normal View History

uniform sampler2D tex;
2014-11-03 15:53:44 -05:00
uniform float vignette_weight;
out vec4 FragColor;
vec3 getCIEYxy(vec3 rgbColor);
vec3 getRGBFromCIEXxy(vec3 YxyColor);
void main()
{
2014-06-03 14:28:42 -04:00
vec2 uv = gl_FragCoord.xy / screen;
vec4 col = texture(tex, uv);
2014-04-25 20:00:50 -04:00
// Uncharted2 tonemap with Auria's custom coefficients
2014-04-25 20:02:16 -04:00
vec4 perChannel = (col * (6.9 * col + .5)) / (col * (5.2 * col + 1.7) + 0.06);
2014-04-25 20:00:50 -04:00
perChannel = pow(perChannel, vec4(2.2));
2014-06-27 18:20:44 -04:00
vec2 inside = uv - 0.5;
2014-06-27 18:20:44 -04:00
float vignette = 1. - dot(inside, inside) * vignette_weight;
vignette = clamp(pow(vignette, 0.8), 0., 1.);
FragColor = vec4(perChannel.xyz * vignette, col.a);
}