summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bgfx/3rdparty/glslang/Test/450.tesc
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/bgfx/3rdparty/glslang/Test/450.tesc')
-rw-r--r--3rdparty/bgfx/3rdparty/glslang/Test/450.tesc23
1 files changed, 0 insertions, 23 deletions
diff --git a/3rdparty/bgfx/3rdparty/glslang/Test/450.tesc b/3rdparty/bgfx/3rdparty/glslang/Test/450.tesc
deleted file mode 100644
index bf5c08373b2..00000000000
--- a/3rdparty/bgfx/3rdparty/glslang/Test/450.tesc
+++ /dev/null
@@ -1,23 +0,0 @@
-#version 450 core
-
-in gl_PerVertex {
- float gl_CullDistance[3];
-} gl_in[gl_MaxPatchVertices];
-
-out gl_PerVertex {
- float gl_CullDistance[3];
-} gl_out[4];
-
-void main()
-{
- gl_out[gl_InvocationID].gl_CullDistance[2] = gl_in[1].gl_CullDistance[2];
-}
-
-layout(location = 4) out bName1 {
- float f;
- layout(location = 5) float g;
-} bInst1[2];
-layout(location = 6) out bName2 {
- float f;
- layout(location = 7) float g; // ERROR, location on array
-} bInst2[2][3];