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