Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

if-04.glsl 152B

1234567891011
  1. /* PASS */
  2. uniform bvec4 a;
  3. void main()
  4. {
  5. if (a.x)
  6. gl_Position = vec4(1.0, 0.0, 0.0, 1.0);
  7. else
  8. gl_Position = vec4(0.0, 1.0, 0.0, 1.0);
  9. }