7 layout(location= 0) in
vec3 position;
8 layout(location= 1) in
vec2 texcoord;
10 uniform mat4 mvpMatrix;
12 out
vec2 vertex_texcoord;
16 gl_Position= mvpMatrix *
vec4(position, 1);
17 vertex_texcoord= texcoord;
23 #ifdef FRAGMENT_SHADER
24 out
vec4 fragment_color;
26 in
vec2 vertex_texcoord;
28 uniform sampler2D texture0;
32 vec4 color= texture(texture0, vertex_texcoord);
33 fragment_color= color;
vecteur generique, utilitaire.
vecteur generique, utilitaire.
vecteur generique 4d, ou 3d homogene, utilitaire.