summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bgfx/3rdparty/glslang/Test/410.geom
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/bgfx/3rdparty/glslang/Test/410.geom')
-rw-r--r--3rdparty/bgfx/3rdparty/glslang/Test/410.geom39
1 files changed, 0 insertions, 39 deletions
diff --git a/3rdparty/bgfx/3rdparty/glslang/Test/410.geom b/3rdparty/bgfx/3rdparty/glslang/Test/410.geom
deleted file mode 100644
index 8775aeb1594..00000000000
--- a/3rdparty/bgfx/3rdparty/glslang/Test/410.geom
+++ /dev/null
@@ -1,39 +0,0 @@
-#version 410 core
-
-void main()
-{
- gl_ViewportIndex = 7;
-}
-
-in gl_PerVertex {
- float gl_PointSize;
-} myIn[]; // ERROR, can't redeclare a different name
-
-in gl_PerVertex {
- float gl_PointSize;
-} gl_myIn[]; // ERROR, can't redeclare a different name
-
-in gl_PerVertex {
- float gl_PointSize;
-} gl_in[];
-
-in gl_PerVertex {
- float gl_PointSize;
-} gl_in[]; // ERROR, can't do it again
-
-out gl_PerVertex {
- float gl_PointSize;
-};
-
-void foo()
-{
- float p = gl_in[1].gl_PointSize; // use of redeclared
- gl_PointSize = p; // use of redeclared
- vec4 v = gl_in[1].gl_Position; // ERROR, not included in the redeclaration
- gl_Position = vec4(1.0); // ERROR, not included in the redeclaration
-}
-
-float foo5()
-{
- return 4; // implicit conversion of return type
-}