Files
third_party_mesa3d/tests/constructor-06.glsl
2010-03-26 16:47:06 -07:00

14 lines
112 B
GLSL

#version 120
/* PASS */
uniform mat2 a;
void main()
{
mat2 b;
b = mat2(a);
gl_Position = gl_Vertex;
}