summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/glslang/src/Test/400.vert
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/glslang/src/Test/400.vert')
-rw-r--r--chromium/third_party/glslang/src/Test/400.vert9
1 files changed, 9 insertions, 0 deletions
diff --git a/chromium/third_party/glslang/src/Test/400.vert b/chromium/third_party/glslang/src/Test/400.vert
new file mode 100644
index 00000000000..2c3dd0424fe
--- /dev/null
+++ b/chromium/third_party/glslang/src/Test/400.vert
@@ -0,0 +1,9 @@
+#version 400 core
+
+in double d; // ERROR, no doubles
+in dvec3 d3; // ERROR, no doubles
+in dmat4 dm4; // ERROR, no doubles
+
+void main()
+{
+}