mirror of
https://gitgud.io/wackyideas/aerothemeplasma-kde6.git
synced 2024-08-15 00:43:45 +00:00
9 lines
119 B
GLSL
9 lines
119 B
GLSL
|
uniform sampler2D sampler;
|
||
|
|
||
|
varying vec2 texcoord0;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_FragColor = texture2D(sampler, texcoord0);
|
||
|
}
|