blob: ced118c1c0a763bb264a3631e2e6f1e344334fb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef attributes_glsl
#define attributes_glsl
#if __VERSION__ >= 130
#define attribute in
#endif
// attribute vec3 gca_Vertices;
attribute vec4 gca_Vertices;
attribute vec2 gca_TexCoords;
//attribute vec4 gca_Colors;
//attribute vec3 gca_Normals;
#endif // attributes_glsl
|