mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 00:20:09 +01:00
14 lines
120 B
Text
14 lines
120 B
Text
|
|
/* PASS */
|
||
|
|
|
||
|
|
uniform ivec2 a;
|
||
|
|
uniform ivec2 b;
|
||
|
|
|
||
|
|
void main()
|
||
|
|
{
|
||
|
|
mat2 c;
|
||
|
|
|
||
|
|
c = mat2(a, b);
|
||
|
|
|
||
|
|
gl_Position = gl_Vertex;
|
||
|
|
}
|