realityplayground-of/zoneb/bin/data/shaders/render.frag
2020-10-18 18:52:22 +02:00

14 lines
No EOL
227 B
GLSL

#ifdef GL_ES
precision mediump float;
#endif
// Custom attributes.
uniform sampler2D uColorTex; // Sampler for the color registered data
in vec2 gTexCoord;
void main()
{
gl_FragColor = texture2D(uColorTex, gTexCoord);
}