summaryrefslogtreecommitdiff
path: root/tests/shaders/glsl-fs-vec4-indexing-2.shader_test
blob: e0bf56b07493b508072330461441f53a02f36f6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[require]
GLSL >= 1.10

[vertex shader]
void main()
{
	gl_Position = gl_Vertex;
}

[fragment shader]
uniform float i;

void main()
{
	vec4 color = vec4(0.0, 0.0, 1.0, 0.0);
	color.y = color[int(i)];
	color.z = 0.0;

	gl_FragColor = color;
}

[test]
uniform float i 2.0;
draw rect -1 -1 2 2
probe rgb 1 1 0.0 1.0 0.0