summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bgfx/3rdparty/spirv-cross/reference/shaders-msl-no-opt/comp/std140-array-load-composite-construct.comp
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/bgfx/3rdparty/spirv-cross/reference/shaders-msl-no-opt/comp/std140-array-load-composite-construct.comp')
-rw-r--r--3rdparty/bgfx/3rdparty/spirv-cross/reference/shaders-msl-no-opt/comp/std140-array-load-composite-construct.comp18
1 files changed, 0 insertions, 18 deletions
diff --git a/3rdparty/bgfx/3rdparty/spirv-cross/reference/shaders-msl-no-opt/comp/std140-array-load-composite-construct.comp b/3rdparty/bgfx/3rdparty/spirv-cross/reference/shaders-msl-no-opt/comp/std140-array-load-composite-construct.comp
deleted file mode 100644
index ba278ccde76..00000000000
--- a/3rdparty/bgfx/3rdparty/spirv-cross/reference/shaders-msl-no-opt/comp/std140-array-load-composite-construct.comp
+++ /dev/null
@@ -1,18 +0,0 @@
-#include <metal_stdlib>
-#include <simd/simd.h>
-
-using namespace metal;
-
-struct SSBO
-{
- float4 a[16];
- float4 b[16];
-};
-
-constant uint3 gl_WorkGroupSize [[maybe_unused]] = uint3(1u);
-
-kernel void main0(device SSBO& _14 [[buffer(0)]], uint3 gl_GlobalInvocationID [[thread_position_in_grid]])
-{
- _14.b[gl_GlobalInvocationID.x] = float4(_14.a[gl_GlobalInvocationID.x].x);
-}
-