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