mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 15:20:10 +01:00
11 lines
167 B
GLSL
11 lines
167 B
GLSL
/* FAIL - matrix-to-matrix constructors are not available in GLSL 1.10 */
|
|
|
|
uniform mat3 a;
|
|
|
|
void main()
|
|
{
|
|
mat2 m;
|
|
|
|
m = mat2(a);
|
|
gl_Position = gl_Vertex;
|
|
}
|