28cf355b26
The alpha channel must be set to 1 before the sample is modulated with the brightness and opacity constants, not after.
27 lines
728 B
GLSL
27 lines
728 B
GLSL
uniform sampler2D sample;
|
|
uniform float textureWidth;
|
|
uniform float textureHeight;
|
|
uniform float opacity;
|
|
uniform float brightness;
|
|
uniform float saturation;
|
|
uniform int u_forceAlpha;
|
|
|
|
varying vec2 varyingTexCoords;
|
|
|
|
void main()
|
|
{
|
|
vec4 tex = texture2D(sample, varyingTexCoords);
|
|
if (u_forceAlpha > 0) {
|
|
tex.a = 1.0;
|
|
}
|
|
if (saturation != 1.0) {
|
|
vec3 desaturated = tex.rgb * vec3( 0.30, 0.59, 0.11 );
|
|
desaturated = vec3( dot( desaturated, tex.rgb ));
|
|
tex.rgb = tex.rgb * vec3( saturation ) + desaturated * vec3( 1.0 - saturation );
|
|
}
|
|
tex.rgb = tex.rgb * opacity * vec3( brightness );
|
|
tex.rgb = vec3(1.0) - tex.rgb;
|
|
tex.a = tex.a * opacity;
|
|
|
|
gl_FragColor = tex;
|
|
}
|