summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bgfx/3rdparty/spirv-cross/reference/shaders-msl/vert/resource-arrays-leaf.ios.vert
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/bgfx/3rdparty/spirv-cross/reference/shaders-msl/vert/resource-arrays-leaf.ios.vert')
-rw-r--r--3rdparty/bgfx/3rdparty/spirv-cross/reference/shaders-msl/vert/resource-arrays-leaf.ios.vert3
1 files changed, 2 insertions, 1 deletions
diff --git a/3rdparty/bgfx/3rdparty/spirv-cross/reference/shaders-msl/vert/resource-arrays-leaf.ios.vert b/3rdparty/bgfx/3rdparty/spirv-cross/reference/shaders-msl/vert/resource-arrays-leaf.ios.vert
index d23edacb2cb..8ab252f5351 100644
--- a/3rdparty/bgfx/3rdparty/spirv-cross/reference/shaders-msl/vert/resource-arrays-leaf.ios.vert
+++ b/3rdparty/bgfx/3rdparty/spirv-cross/reference/shaders-msl/vert/resource-arrays-leaf.ios.vert
@@ -22,7 +22,8 @@ struct constant_block
#endif
constant int arraySize = SPIRV_CROSS_CONSTANT_ID_0;
-inline void doWork(device storage_block* (&storage)[2], constant constant_block* (&constants)[4], thread const array<texture2d<int>, 3> images)
+static inline __attribute__((always_inline))
+void doWork(device storage_block* (&storage)[2], constant constant_block* (&constants)[4], thread const array<texture2d<int>, 3> images)
{
storage[0]->baz = uint4(constants[3]->foo);
storage[1]->quux = images[2].read(uint2(int2(constants[1]->bar))).xy;