summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bgfx/3rdparty/glslang/Test/420_size_gl_in.geom
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/bgfx/3rdparty/glslang/Test/420_size_gl_in.geom')
-rw-r--r--3rdparty/bgfx/3rdparty/glslang/Test/420_size_gl_in.geom21
1 files changed, 0 insertions, 21 deletions
diff --git a/3rdparty/bgfx/3rdparty/glslang/Test/420_size_gl_in.geom b/3rdparty/bgfx/3rdparty/glslang/Test/420_size_gl_in.geom
deleted file mode 100644
index b709d5aa38e..00000000000
--- a/3rdparty/bgfx/3rdparty/glslang/Test/420_size_gl_in.geom
+++ /dev/null
@@ -1,21 +0,0 @@
-#version 420 core
-
-// testing input arrays without a gl_in[] block redeclaration, see 400.geom for with
-
-int i;
-
-layout(triangles) in;
-in vec4 colorun[];
-in vec4 color3[3];
-
-void foo()
-{
- gl_in.length();
- gl_in[1].gl_Position;
- gl_in.length();
- gl_in[i].gl_Position; // should be sized to 3 by 'triangles'
-}
-
-in gl_PerVertex { // ERROR, already used
- vec4 gl_Position;
-} gl_in[];