Merge branch 'anholt'
[mesa.git] / tests / matrix-09.glsl
1 /* FAIL - matrix-to-matrix constructors are not available in GLSL 1.10 */
2
3 uniform mat3 a;
4
5 void main()
6 {
7 mat2 m;
8
9 m = mat2(a);
10 gl_Position = gl_Vertex;
11 }