Add more structure constructor tests.
[piglit/hramrach.git] / tests / shaders / glsl-algebraic-logicand-true-2.shader_test
blobb68a4ac793da29c2397c48010e1cb3a725e7ea85
1 [require]
2 GL >= 2.0
3 GLSL >= 1.10
5 [vertex shader]
6 void main()
8         gl_Position = gl_Vertex;
11 [fragment shader]
12 uniform vec4 color;
13 void main()
15         const vec4 red = vec4(1.0, 0.0, 0.0, 0.0);
16         const vec4 green = vec4(0.0, 1.0, 0.0, 0.0);
18         if (color.b != 0.0 && true)
19                 gl_FragColor = green;
20         else
21                 gl_FragColor = red;
24 [test]
25 uniform vec4 color 0.0 0.0 1.0 0.0
26 draw rect -1 -1 2 2
27 probe rgb 1 1 0.0 1.0 0.0