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