1/* PASS */
2
3uniform ivec2 a;
4uniform ivec2 b;
5
6void main()
7{
8  mat2 c;
9
10  c = mat2(a, b);
11
12  gl_Position = gl_Vertex;
13}
14