mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 13:00:09 +01:00
10 lines
73 B
GLSL
10 lines
73 B
GLSL
#version 120
|
|
|
|
void main()
|
|
{
|
|
float a;
|
|
vec4 b;
|
|
|
|
b.x = 6.0;
|
|
a = b.xy;
|
|
}
|