ir_to_mesa: Support texture rectangle targets
[mesa/nouveau-pmpeg.git] / src / glsl / tests / constructor-05.glsl
blob9c74f75a40438eaf7ac3c2cfbce5a4405380aa68
1 /* FAIL - too few components supplied to constructor */
3 uniform vec2 a;
4 uniform float x;
6 void main()
8   mat2 b;
10   b = mat2(a, x);
12   gl_Position = gl_Vertex;