summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bgfx/3rdparty/glslang/Test/310runtimeArray.vert
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/bgfx/3rdparty/glslang/Test/310runtimeArray.vert')
-rw-r--r--3rdparty/bgfx/3rdparty/glslang/Test/310runtimeArray.vert18
1 files changed, 0 insertions, 18 deletions
diff --git a/3rdparty/bgfx/3rdparty/glslang/Test/310runtimeArray.vert b/3rdparty/bgfx/3rdparty/glslang/Test/310runtimeArray.vert
deleted file mode 100644
index 3d7b018e656..00000000000
--- a/3rdparty/bgfx/3rdparty/glslang/Test/310runtimeArray.vert
+++ /dev/null
@@ -1,18 +0,0 @@
-#version 310 es
-
-precision highp float;
-layout(location=0) out float o;
-
-struct S { float f; };
-buffer b1 { S s[]; };
-buffer b2 { S s[]; } b2name;
-buffer b3 { S s[]; } b3name[];
-buffer b4 { S s[]; } b4name[4];
-
-void main()
-{
- o = s[5].f;
- o += b2name.s[6].f;
- o += b3name[3].s[7].f;
- o += b4name[2].s[8].f;
-}