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.

dowhile2.glsl 153B

12345678910
  1. void main() {
  2. float sum = 0.0;
  3. do {
  4. sum += 0.1;
  5. if (sum < 0.499999)
  6. continue;
  7. break;
  8. } while (true);
  9. gl_FragColor = vec4(sum);
  10. }