summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bgfx/3rdparty/glslang/Test/450.geom
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/bgfx/3rdparty/glslang/Test/450.geom')
-rw-r--r--3rdparty/bgfx/3rdparty/glslang/Test/450.geom19
1 files changed, 0 insertions, 19 deletions
diff --git a/3rdparty/bgfx/3rdparty/glslang/Test/450.geom b/3rdparty/bgfx/3rdparty/glslang/Test/450.geom
deleted file mode 100644
index 45cbecba566..00000000000
--- a/3rdparty/bgfx/3rdparty/glslang/Test/450.geom
+++ /dev/null
@@ -1,19 +0,0 @@
-#version 450 core
-
-in gl_PerVertex {
- float gl_CullDistance[3];
-} gl_in[];
-
-out gl_PerVertex {
- float gl_CullDistance[3];
-};
-
-layout(triangles) in;
-
-void main()
-{
- gl_in[3].gl_Position; // ERROR, out of range
- gl_CullDistance[2] = gl_in[1].gl_CullDistance[2];
-}
-
-layout(points) in float f[3]; // ERROR, must be standalone