stk-code_catmod/data/shaders/bloom.frag

18 lines
300 B
GLSL
Raw Normal View History

#version 130
uniform sampler2D tex;
uniform float low;
in vec2 uv;
out vec4 FragColor;
void main()
{
vec3 weights = vec3(0.2126, 0.7152, 0.0722); // ITU-R BT. 709
vec3 col = texture(tex, uv).xyz;
float luma = dot(weights, col);
2014-02-01 20:13:04 -05:00
col *= smoothstep(1., 2., luma);
FragColor = vec4(col, 1.0);
}