mirror of https://github.com/axmolengine/axmol.git
14 lines
385 B
C
14 lines
385 B
C
|
" \n\
|
||
|
#ifdef GL_ES \n\
|
||
|
precision lowp float; \n\
|
||
|
#endif \n\
|
||
|
\n\
|
||
|
varying vec2 v_texCoord; \n\
|
||
|
uniform sampler2D u_texture; \n\
|
||
|
\n\
|
||
|
void main() \n\
|
||
|
{ \n\
|
||
|
gl_FragColor = texture2D(u_texture, v_texCoord); \n\
|
||
|
} \n\
|
||
|
";
|