Bump github/codeql-action from 3.27.1 to 3.27.4
[glslang.git] / Test / GL_EXT_draw_instanced.vert
blob601e3d7f607e1b880155c8315e1c4af4cf7f93a7
1 #version 120
2 #extension GL_EXT_draw_instanced : require
3 #define ID gl_InstanceID
5 uniform mat4 gtf_ModelViewProjectionMatrix;
6 uniform vec3 instanceOffsets[3];
7 uniform vec4 va[gl_MaxVertexAttribs];
8 vec4 color;
10 void main (void)
12         vec4 vertex = vec4(va[0].xy / 3.0, va[0].zw) + vec4(instanceOffsets[ID], 1.0);
13         color = vec4(0, 0, 0, 0);
14         for (int i = 1; i < gl_MaxVertexAttribs; i++)
15                 color += va[i];
16         gl_Position = gtf_ModelViewProjectionMatrix * vertex;
17         gl_PointSize = 1.0;