summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/glslang/src/Test/spv.for-notest.vert
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/glslang/src/Test/spv.for-notest.vert')
-rw-r--r--chromium/third_party/glslang/src/Test/spv.for-notest.vert6
1 files changed, 6 insertions, 0 deletions
diff --git a/chromium/third_party/glslang/src/Test/spv.for-notest.vert b/chromium/third_party/glslang/src/Test/spv.for-notest.vert
new file mode 100644
index 00000000000..f40e66644c7
--- /dev/null
+++ b/chromium/third_party/glslang/src/Test/spv.for-notest.vert
@@ -0,0 +1,6 @@
+#version 450
+layout(location=0) out highp int r;
+void main() {
+ int i;
+ for (i=0; ; i++) { r = i; }
+}