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.

dowhile.glsl 117B

12345678
  1. void main() {
  2. float sum = 0.0;
  3. do {
  4. sum += 0.1;
  5. break;
  6. } while (true);
  7. gl_FragColor = vec4(sum);
  8. }