blob: 298dce7ef131213763c88b0ee6ff6593016af862 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//Copyright 2010 JogAmp Community. All rights reserved.
#ifdef GL_ES
#version 100
#else
#version 110
#endif
#include uniforms.glsl
#include attributes.glsl
#include varyings.glsl
void main(void)
{
gl_Position = gcu_PMVMatrix[0] * gcu_PMVMatrix[1] * vec4(gca_Vertices, 1);
gcv_TexCoord = gca_TexCoords;
}
|