Add more structure constructor tests.
[piglit/hramrach.git] / tests / glslparsertest / glsl2 / constructor-06.vert
blobd77a5f9e8920370341fa3bff6a53fe0361a8bbdb
1 #version 120
2 /* PASS */
4 uniform mat2 a;
6 void main()
8   mat2 b;
10   b = mat2(a);
12   gl_Position = gl_Vertex;