14 lines
No EOL
227 B
GLSL
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);
|
|
} |