12 lines
210 B
C
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;
|
||
|
|
}
|
||
|
|
|
||
|
|
);
|