Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/KhronosGroup/SPIRV-Cross.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2018-01-26 05:06:55 +0300
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2018-01-29 17:40:45 +0300
commit5cbed7a69f35fe388d80a780612b97bf742ffef7 (patch)
tree11f8c562852ff6ffd58f46cd920ace162fd02313 /reference/opt/shaders-msl/asm/comp
parent050361422c209193042aaf32648f36fac2d38d00 (diff)
Update test files
Diffstat (limited to 'reference/opt/shaders-msl/asm/comp')
-rw-r--r--reference/opt/shaders-msl/asm/comp/storage-buffer-basic.asm.comp2
1 files changed, 1 insertions, 1 deletions
diff --git a/reference/opt/shaders-msl/asm/comp/storage-buffer-basic.asm.comp b/reference/opt/shaders-msl/asm/comp/storage-buffer-basic.asm.comp
index 1dff618b..3df6161f 100644
--- a/reference/opt/shaders-msl/asm/comp/storage-buffer-basic.asm.comp
+++ b/reference/opt/shaders-msl/asm/comp/storage-buffer-basic.asm.comp
@@ -14,7 +14,7 @@ struct _6
float _m0[1];
};
-kernel void main0(uint3 gl_WorkGroupID [[threadgroup_position_in_grid]], device _6& _8 [[buffer(0)]], device _6& _9 [[buffer(1)]])
+kernel void main0(device _6& _8 [[buffer(0)]], device _6& _9 [[buffer(1)]], uint3 gl_WorkGroupID [[threadgroup_position_in_grid]])
{
_8._m0[gl_WorkGroupID.x] = _9._m0[gl_WorkGroupID.x] + _8._m0[gl_WorkGroupID.x];
}