mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 04:40:09 +01:00
11 lines
121 B
GLSL
11 lines
121 B
GLSL
#version 120
|
|
/* PASS */
|
|
|
|
void main()
|
|
{
|
|
vec4 a[2];
|
|
|
|
a = vec4 [] (vec4(1.0), vec4(2.0));
|
|
|
|
gl_Position = gl_Vertex;
|
|
}
|