summaryrefslogtreecommitdiff
path: root/tests/shaders/glsl-vs-loop-nested.vert
blob: f8b691bc195f93086573a3071ac198786153c88a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
void main()
{
	gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;

	int count = int(gl_Color.w);
	int count1 = int(count / 4);
	int count2 = count - count1 * 4;
	vec3 c = gl_Color.xyz;
	int i, j;

	for (i = 0; i < count1; i++) {
		for (j = 0; j < count2; j++) {
			c = c.yzx;
		}
	}

	gl_FrontColor = vec4(c, 1.0);
}