Files
wnmj-normal/cocos2d/tests/cpp-tests/Classes/ShaderTest/ShaderTest.vsh.h
2026-03-03 13:56:44 +08:00

12 lines
210 B
C

#define STRINGIFY(A) #A
static const char* shadertestvsh = STRINGIFY(
attribute vec4 a_position;
void main()
{
gl_Position = CC_MVPMatrix * a_position;
}
);