Merge remote branch 'origin/master' into nv50-compiler
[mesa.git] / src / glsl / tests / condition-01.glsl
1 /* FAIL - :? condition is not bool scalar */
2
3 uniform bvec4 a;
4
5 void main()
6 {
7 gl_Position = (a) ? vec4(1.0, 0.0, 0.0, 1.0) : vec4(0.0, 1.0, 0.0, 1.0);
8 }