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