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