2013-11-30 16:33:06 -05:00
|
|
|
uniform sampler2D tex;
|
|
|
|
uniform float low;
|
|
|
|
|
2014-02-28 11:29:05 -05:00
|
|
|
#if __VERSION__ >= 130
|
2014-01-12 16:07:14 -05:00
|
|
|
in vec2 uv;
|
2014-01-19 13:31:00 -05:00
|
|
|
out vec4 FragColor;
|
2014-02-28 11:29:05 -05:00
|
|
|
#else
|
|
|
|
varying vec2 uv;
|
|
|
|
#define FragColor gl_FragColor
|
|
|
|
#endif
|
|
|
|
|
2014-01-12 16:07:14 -05:00
|
|
|
|
2013-11-30 16:33:06 -05:00
|
|
|
void main()
|
|
|
|
{
|
|
|
|
vec3 weights = vec3(0.2126, 0.7152, 0.0722); // ITU-R BT. 709
|
2014-01-19 12:53:35 -05:00
|
|
|
vec3 col = texture(tex, uv).xyz;
|
2013-11-30 16:33:06 -05:00
|
|
|
float luma = dot(weights, col);
|
|
|
|
|
2014-02-01 20:13:04 -05:00
|
|
|
col *= smoothstep(1., 2., luma);
|
2013-11-30 16:33:06 -05:00
|
|
|
|
2014-01-19 13:31:00 -05:00
|
|
|
FragColor = vec4(col, 1.0);
|
2013-11-30 16:33:06 -05:00
|
|
|
}
|