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.

12345678910111213141516171819
  1. #version 120
  2. /* PASS */
  3. uniform mat2x3 a;
  4. uniform mat3x2 b;
  5. uniform mat3x3 c;
  6. uniform mat3x3 d;
  7. void main()
  8. {
  9. mat3x3 x;
  10. /* Multiplying a 2 column, 3 row matrix with a 3 column, 2 row matrix
  11. * results in a 3 column, 3 row matrix.
  12. */
  13. x = (a * b) + c / d;
  14. gl_Position = gl_Vertex;
  15. }