aerothemeplasma/kwin/effects_cpp/kwin-effect-smodsnap-v2/shaders/shader.frag
2024-08-09 03:20:25 +02:00

8 lines
119 B
GLSL

uniform sampler2D sampler;
varying vec2 texcoord0;
void main()
{
gl_FragColor = texture2D(sampler, texcoord0);
}