blob: c8c076ba16f1317c0509c8a692b78eba441a44a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef attributes_glsl
#define attributes_glsl
#include precision.glsl
// attribute vec3 gca_Vertices;
attribute vec4 gca_Vertices;
attribute vec2 gca_TexCoords;
//attribute vec4 gca_Colors;
//attribute vec3 gca_Normals;
#endif // attributes_glsl
|