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