blob: 108247c9c3d9302c86d3f6a59fd8294451587abe (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef attributes_glsl
#define attributes_glsl
// attribute vec3 gca_Vertices;
attribute vec4 gca_Vertices;
attribute vec2 gca_TexCoords;
//attribute vec4 gca_Colors;
//attribute vec3 gca_Normals;
#endif // attributes_glsl
|