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