Add more structure constructor tests.
[piglit/hramrach.git] / tests / glslparsertest / glsl2 / constructor-04.vert
blob19d5e011dea18436dc7115974c1daa85e7fee2b2
1 #version 120
2 /* FAIL - matrix must be only parameter to matrix constructor */
4 uniform mat2 a;
5 uniform float x;
7 void main()
9   mat2 b;
11   b = mat2(a, x);
13   gl_Position = gl_Vertex;