stk-code_catmod/data/shaders/bloom.frag
Vincent Lejeune b5598fda57 Revert "Force non negative value in bloom"
This reverts commit cb922ed4db.
2014-09-16 00:37:23 +02:00

17 lines
292 B
GLSL

uniform sampler2D tex;
uniform float low;
out vec4 FragColor;
vec3 getCIEYxy(vec3 rgbColor);
void main()
{
vec2 uv = gl_FragCoord.xy / 512;
vec3 col = texture(tex, uv).xyz;
float luma = getCIEYxy(col).x;
col *= smoothstep(1., 10., luma);
FragColor = vec4(col, 1.0);
}