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

13 lines
201 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;
2019-03-26 13:45:03 +08:00
uniform sampler2D u_texture;
2015-05-26 17:21:35 +08:00
void main(void)
{
2019-03-26 13:45:03 +08:00
gl_FragColor = texture2D(u_texture, v_texCoord);
2015-05-26 17:21:35 +08:00
}