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