d1479f871a
This avoids a lot of huge code changes. Arrays generally cannot be copied in and out of buffers, at least no compiler frontend seems to do it. Also avoids a lot of issues surrounding packed vectors and matrices.
25 lines
433 B
Plaintext
25 lines
433 B
Plaintext
#pragma clang diagnostic ignored "-Wmissing-prototypes"
|
|
|
|
#include <metal_stdlib>
|
|
#include <simd/simd.h>
|
|
|
|
using namespace metal;
|
|
|
|
struct bufA
|
|
{
|
|
uint _data[1];
|
|
};
|
|
|
|
static inline __attribute__((always_inline))
|
|
void _main(device bufA& bufA_1, device bufA& bufB)
|
|
{
|
|
bufA_1._data[0] = 0u;
|
|
bufB._data[0] = 0u;
|
|
}
|
|
|
|
kernel void main0(device bufA& bufA_1 [[buffer(0)]], device bufA& bufB [[buffer(1)]])
|
|
{
|
|
_main(bufA_1, bufB);
|
|
}
|
|
|