axmol/tests/cpp-tests/Classes/ShaderTest/ShaderTest.vsh.h

11 lines
203 B
C
Raw Normal View History

2014-05-10 02:48:11 +08:00
#define STRINGIFY(A) #A
static const char* shadertestvsh = R"(
attribute vec4 a_position;
void main()
{
gl_Position = CC_MVPMatrix * a_position;
}
)";