Home | History | Annotate | Download | only in tests
      1 /* FAIL - too few components supplied to constructor */
      2 
      3 uniform vec2 a;
      4 uniform float x;
      5 
      6 void main()
      7 {
      8   mat2 b;
      9 
     10   b = mat2(a, x);
     11 
     12   gl_Position = gl_Vertex;
     13 }
     14