Clone of mesa.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }