summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/glslang/src/Test/spv.while-simple.vert
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/glslang/src/Test/spv.while-simple.vert')
-rw-r--r--chromium/third_party/glslang/src/Test/spv.while-simple.vert7
1 files changed, 7 insertions, 0 deletions
diff --git a/chromium/third_party/glslang/src/Test/spv.while-simple.vert b/chromium/third_party/glslang/src/Test/spv.while-simple.vert
new file mode 100644
index 00000000000..0f38325d0e0
--- /dev/null
+++ b/chromium/third_party/glslang/src/Test/spv.while-simple.vert
@@ -0,0 +1,7 @@
+#version 310 es
+void main() {
+ int i = 0;
+ while (i<10) {
+ i++;
+ }
+}