summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/glslang/src/Test/spv.while-simple.vert
blob: 0f38325d0e0ee6789476bf0f7edd2458bf49ca65 (plain)
1
2
3
4
5
6
7
#version 310 es
void main() {
  int i = 0;
  while (i<10) {
    i++;
  }
}