mirror of
https://github.com/MCLx86/xtreemtest.git
synced 2024-11-25 03:32:14 +01:00
12 lines
184 B
Plaintext
12 lines
184 B
Plaintext
|
varying lowp vec4 varColor;
|
||
|
|
||
|
void main(void)
|
||
|
{
|
||
|
gl_Position = mWorldViewProj * inVertexPosition;
|
||
|
#ifdef GL_ES
|
||
|
varColor = inVertexColor.bgra;
|
||
|
#else
|
||
|
varColor = inVertexColor;
|
||
|
#endif
|
||
|
}
|