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