mirror of https://github.com/axmolengine/axmol.git
10 lines
149 B
V Shell
10 lines
149 B
V Shell
|
// http://www.cocos2d-iphone.org
|
||
|
|
||
|
attribute vec4 a_position;
|
||
|
|
||
|
uniform mat4 u_MVPMatrix;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_Position = u_MVPMatrix * a_position;
|
||
|
}
|