summaryrefslogtreecommitdiff
path: root/tests/shaders/glsl-fs-loop-nested.frag
blob: 9a83166221dd31929e153539f12277263ce79a4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
uniform vec4 color;

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

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

	gl_FragColor = vec4(c, 1.0);
}