2016-07-26 19:27:02 +00:00
|
|
|
|
|
|
|
in vec2 TexCoord;
|
2018-06-12 21:52:33 +00:00
|
|
|
layout(location=0) out vec4 FragColor;
|
2016-07-26 19:27:02 +00:00
|
|
|
|
2018-06-13 13:53:56 +00:00
|
|
|
layout(binding=0) uniform sampler2D InputTexture;
|
2018-08-07 22:54:12 +00:00
|
|
|
layout(binding=1) uniform sampler2D DitherTexture;
|
2016-07-26 19:27:02 +00:00
|
|
|
|
|
|
|
vec4 ApplyGamma(vec4 c)
|
|
|
|
{
|
2017-06-26 07:50:49 +00:00
|
|
|
vec3 valgray;
|
2017-07-02 20:59:15 +00:00
|
|
|
if (GrayFormula == 0)
|
|
|
|
valgray = vec3(c.r + c.g + c.b) * (1 - Saturation) / 3 + c.rgb * Saturation;
|
2017-06-26 07:50:49 +00:00
|
|
|
else
|
2017-07-02 20:59:15 +00:00
|
|
|
valgray = mix(vec3(dot(c.rgb, vec3(0.3,0.56,0.14))), c.rgb, Saturation);
|
2017-06-25 23:33:07 +00:00
|
|
|
vec3 val = valgray * Contrast - (Contrast - 1.0) * 0.5;
|
2016-07-26 19:27:02 +00:00
|
|
|
val += Brightness * 0.5;
|
2016-09-21 19:13:10 +00:00
|
|
|
val = pow(max(val, vec3(0.0)), vec3(InvGamma));
|
2016-07-26 19:27:02 +00:00
|
|
|
return vec4(val, c.a);
|
|
|
|
}
|
|
|
|
|
2018-08-08 19:58:23 +00:00
|
|
|
vec4 Dither(vec4 c)
|
2018-08-07 01:03:40 +00:00
|
|
|
{
|
2018-08-08 19:58:23 +00:00
|
|
|
if (ColorScale == 0.0)
|
|
|
|
return c;
|
2018-08-07 22:54:12 +00:00
|
|
|
vec2 texSize = vec2(textureSize(DitherTexture, 0));
|
|
|
|
float threshold = texture(DitherTexture, gl_FragCoord.xy / texSize).r;
|
2018-08-08 19:58:23 +00:00
|
|
|
return vec4(floor(c.rgb * ColorScale + threshold) / ColorScale, c.a);
|
2018-08-07 01:03:40 +00:00
|
|
|
}
|
|
|
|
|
2016-07-26 19:27:02 +00:00
|
|
|
void main()
|
|
|
|
{
|
2018-08-08 19:58:23 +00:00
|
|
|
FragColor = Dither(ApplyGamma(texture(InputTexture, TexCoord)));
|
2016-07-26 19:27:02 +00:00
|
|
|
}
|