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