mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-25 03:12:51 +00:00
9 lines
208 B
GLSL
9 lines
208 B
GLSL
uniform sampler2D sampler;
|
|
uniform float u_alphaProgress;
|
|
|
|
varying vec2 varyingTexCoords;
|
|
|
|
void main() {
|
|
gl_FragColor = texture2D(sampler, varyingTexCoords, 1.75);
|
|
gl_FragColor.a = u_alphaProgress;
|
|
}
|