mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-25 03:12:51 +00:00
24 lines
448 B
Text
24 lines
448 B
Text
![]() |
uniform sampler2D sampler;
|
||
|
uniform vec4 modulation;
|
||
|
uniform float saturation;
|
||
|
|
||
|
varying vec2 varyingTexCoords;
|
||
|
|
||
|
//varying vec4 color;
|
||
|
|
||
|
void main() {
|
||
|
vec4 tex = texture2D(sampler, varyingTexCoords);
|
||
|
|
||
|
if (saturation != 1.0) {
|
||
|
tex.rgb = mix(vec3(dot( vec3( 0.30, 0.59, 0.11 ), tex.rgb )), tex.rgb, saturation);
|
||
|
}
|
||
|
|
||
|
tex *= modulation;
|
||
|
|
||
|
#ifdef KWIN_SHADER_DEBUG
|
||
|
tex.g = min(tex.g + 0.5, 1.0);
|
||
|
#endif
|
||
|
|
||
|
gl_FragColor = tex;
|
||
|
}
|