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