mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 13:30:12 +01:00
12 lines
154 B
GLSL
12 lines
154 B
GLSL
/* 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;
|
|
}
|