mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 15:30:14 +01:00
7 lines
115 B
GLSL
7 lines
115 B
GLSL
void main() {
|
|
float sum = 0.0;
|
|
while (sum < 0.499999) {
|
|
sum += 0.1;
|
|
}
|
|
gl_FragColor = vec4(sum);
|
|
}
|