realityplayground-of/zoneb/bin/data/shaders/render.frag

14 lines
227 B
GLSL
Raw Normal View History

2020-10-18 16:52:22 +00:00
#ifdef GL_ES
precision mediump float;
#endif
// Custom attributes.
2020-10-18 16:52:22 +00:00
uniform sampler2D uColorTex; // Sampler for the color registered data
in vec2 gTexCoord;
void main()
{
2020-10-18 16:52:22 +00:00
gl_FragColor = texture2D(uColorTex, gTexCoord);
}