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.

constructor-07.glsl 120B

12345678910111213
  1. /* PASS */
  2. uniform ivec2 a;
  3. uniform ivec2 b;
  4. void main()
  5. {
  6. mat2 c;
  7. c = mat2(a, b);
  8. gl_Position = gl_Vertex;
  9. }