mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 21:50:12 +01:00
8 lines
117 B
GLSL
8 lines
117 B
GLSL
void main() {
|
|
float sum = 0.0;
|
|
do {
|
|
sum += 0.1;
|
|
break;
|
|
} while (true);
|
|
gl_FragColor = vec4(sum);
|
|
}
|