axmol/tests/Resources/Shaders/example_Plasma.vsh

8 lines
122 B
V Shell
Raw Normal View History

2012-03-21 17:02:52 +08:00
// http://www.cocos2d-iphone.org
attribute vec4 a_position;
void main()
{
2012-11-20 16:16:16 +08:00
gl_Position = CC_MVPMatrix * a_position;
2012-03-21 17:02:52 +08:00
}