Add more structure constructor tests.
[piglit/hramrach.git] / tests / shaders / glsl-vs-arrays-2.shader_test
blobd4aaf5e059b95c2bc429d58d5aec95b58b1afd65
1 [require]
2 GL >= 2.0
3 GLSL >= 1.10
5 [vertex shader]
6 /* VS array access (read-only) from temps using a varying
7  * array index per vert.
8  */
9 uniform float one;
10 varying vec4 color;
11 void main()
13         vec4 colors[4];
14         colors[0] = vec4(one, 0.0, 0.0, 0.0);
15         colors[1] = vec4(0.0, one, 0.0, 0.0);
16         colors[2] = vec4(0.0, 0.0, one, 0.0);
17         colors[3] = vec4(one, 0.0, one, 0.0);
19         gl_Position = gl_Vertex;
21         int index = int((gl_Vertex.x + 1.0) * 0.5 + (gl_Vertex.y + 1.0));
22         color = colors[index];
25 [fragment shader]
26 varying vec4 color;
27 void main()
29         gl_FragColor = color;
32 [test]
33 uniform float one 1.0
34 draw rect -1 -1 2 2
35 relative probe rgb (0.0, 0.0) (1.0, 0.0, 0.0, 0.0)
36 relative probe rgb (1.0, 0.0) (0.0, 1.0, 0.0, 0.0)
37 relative probe rgb (0.0, 1.0) (0.0, 0.0, 1.0, 0.0)
38 relative probe rgb (1.0, 1.0) (1.0, 0.0, 1.0, 0.0)