1void main() { 2 float sum = 0.0; 3 while (sum < 0.499999) { 4 sum += 0.1; 5 } 6 gl_FragColor = vec4(sum); 7} 8