2020-02-22 15:38:54 +04:00

10 lines
159 B
GLSL
Executable File

precision highp float;
varying vec2 varTexcoord;
uniform sampler2D texture;
void main (void)
{
gl_FragColor = texture2D(texture, varTexcoord.st, 0.0);
}