07ec225633a854c5034c917eefe6d6791a23dec3
[mesa.git] / src / glsl / tests / constructor-03.glsl
1 /* FAIL - cannot construct a matrix from a matrix in GLSL 1.10 */
2
3 uniform mat2 a;
4
5 void main()
6 {
7 mat2 b;
8
9 b = mat2(a);
10
11 gl_Position = gl_Vertex;
12 }