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.

condition-01.glsl 155B

12345678
  1. /* FAIL - :? condition is not bool scalar */
  2. uniform bvec4 a;
  3. void main()
  4. {
  5. gl_Position = (a) ? vec4(1.0, 0.0, 0.0, 1.0) : vec4(0.0, 1.0, 0.0, 1.0);
  6. }