axmol/tests/cpp-tests/Resources/Shaders/example_Normal.fsh

13 lines
195 B
Plaintext
Raw Normal View History

2015-05-26 17:21:35 +08:00
#ifdef GL_ES
precision mediump float;
#endif
varying vec4 v_fragmentColor;
varying vec2 v_texCoord;
2022-07-04 21:26:48 +08:00
uniform sampler2D u_tex0;
2019-03-26 13:45:03 +08:00
2015-05-26 17:21:35 +08:00
void main(void)
{
2022-07-04 21:26:48 +08:00
gl_FragColor = texture2D(u_tex0, v_texCoord);
2015-05-26 17:21:35 +08:00
}