summaryrefslogtreecommitdiff
path: root/tests/shaders/glsl-vs-uniform-array-2.shader_test
blob: 8a4ad1becb2e853092ef7cd1870a3785d59f18fe (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
26
[require]
GLSL >= 1.10

[vertex shader]
uniform vec4 arg[4];
varying vec4 color;
void main()
{
	gl_Position = gl_Vertex;
	color = arg[int(arg[0].x)];
}

[fragment shader]
varying vec4 color;
void main()
{
	gl_FragColor = color;
}

[test]
uniform vec4 arg[0] 1.0 0.0 0.0 0.0
uniform vec4 arg[1] 0.0 1.0 0.0 0.0
uniform vec4 arg[2] 0.0 0.0 1.0 0.0
uniform vec4 arg[3] 1.0 0.0 1.0 0.0
draw rect -1 -1 2 2
probe rgb 1 1 0.0 1.0 0.0