spv.for-complex-condition.vert 165 B

12345678
  1. #version 450
  2. layout(location=0) out highp int r;
  3. layout(location=0) in lowp int flag;
  4. void main() {
  5. int i;
  6. for (i=0; i < (flag==1 ? 10 : 15) ; i++) { r = i; }
  7. }