9c74f75a40438eaf7ac3c2cfbce5a4405380aa68
[mesa.git] / src / glsl / tests / constructor-05.glsl
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 }