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