spv.while-simple.vert 75 B

12345678
  1. #version 310 es
  2. void main() {
  3. int i = 0;
  4. while (i<10) {
  5. i++;
  6. }
  7. }