mirror of https://github.com/axmolengine/axmol.git
12 lines
234 B
V Shell
12 lines
234 B
V Shell
|
attribute vec4 a_position;
|
||
|
attribute vec2 a_texCoord;
|
||
|
|
||
|
varying vec2 TextureCoordOut;
|
||
|
|
||
|
void main(void)
|
||
|
{
|
||
|
gl_Position = CC_MVPMatrix * a_position;
|
||
|
TextureCoordOut = a_texCoord;
|
||
|
TextureCoordOut.y = 1.0 - TextureCoordOut.y;
|
||
|
}
|