Files
third_party_mesa3d/tests/constructor-03.glsl

13 lines
154 B
Plaintext
Raw Normal View History

2010-03-26 16:41:43 -07:00
/* FAIL - cannot construct a matrix from a matrix in GLSL 1.10 */
uniform mat2 a;
void main()
{
mat2 b;
b = mat2(a);
gl_Position = gl_Vertex;
}