summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/glslang/src/Test/spv.length.frag
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/glslang/src/Test/spv.length.frag')
-rw-r--r--chromium/third_party/glslang/src/Test/spv.length.frag14
1 files changed, 14 insertions, 0 deletions
diff --git a/chromium/third_party/glslang/src/Test/spv.length.frag b/chromium/third_party/glslang/src/Test/spv.length.frag
new file mode 100644
index 00000000000..20e74102b3e
--- /dev/null
+++ b/chromium/third_party/glslang/src/Test/spv.length.frag
@@ -0,0 +1,14 @@
+#version 140
+
+vec4 u[3];
+
+in vec2 v[2];
+
+void main()
+{
+ int a[5];
+
+ vec2 t = v[0] + v[1];
+
+ gl_FragColor = vec4(u.length() * v.length() * a.length());
+}