SPIRV-Cross/reference/shaders-msl/asm/comp/copy-object-ssbo-to-ssbo.asm.comp

24 lines
292 B
Plaintext
Raw Normal View History

#include <metal_stdlib>
#include <simd/simd.h>
using namespace metal;
struct _19
{
};
struct _5
{
int _m0;
_19 _m1;
char _m2_pad[4];
_19 _m2;
char _m3_pad[4];
int _m3;
};
kernel void main0(device _5& _3 [[buffer(0)]], device _5& _4 [[buffer(1)]])
{
_4 = _3;
}