i965: Request that returns be lowered in shader main
[mesa/nouveau-pmpeg.git] / src / glsl / tests / if-03.glsl
blob179618c716efc4c91fb7aa8bc11b8a641f55b59a
1 /* PASS */
3 uniform bool a;
5 void main()
7   if (a)
8     gl_Position = vec4(1.0, 0.0, 0.0, 1.0);
9   else
10     gl_Position = vec4(0.0, 1.0, 0.0, 1.0);