kwin/effects/logout/data/logout-blur-140.frag
2013-05-08 18:33:03 +02:00

14 lines
250 B
GLSL

#version 140
uniform sampler2D sampler;
uniform float u_alphaProgress;
in vec2 varyingTexCoords;
out vec4 fragColor;
void main() {
vec4 texel = texture(sampler, varyingTexCoords, 1.75);
texel.a = u_alphaProgress;
fragColor = texel;
}