axmol/tests/cpp-tests/Resources/MeshRendererTest/toon.vert

17 lines
376 B
GLSL
Raw Normal View History

attribute vec4 a_position;
attribute vec2 a_texCoord;
attribute vec3 a_normal;
2014-12-19 15:31:06 +08:00
varying vec2 v_texture_coord;
varying vec3 v_normal;
uniform mat4 u_MVPMatrix;
uniform mat3 u_NormalMatrix;
void main(void)
{
gl_Position = u_MVPMatrix * a_position;
2014-12-19 15:31:06 +08:00
v_texture_coord = a_texCoord;
v_texture_coord.y = (1.0 - v_texture_coord.y);
v_normal = u_NormalMatrix *a_normal;
}