Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

while.glsl 115B

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