437fc87a89
Apparently we didn't use those yet. MSL seems to be able to alias struct types and variable types to a degree, so that's why it has escaped testing until now.
24 lines
388 B
Plaintext
24 lines
388 B
Plaintext
#pragma clang diagnostic ignored "-Wmissing-prototypes"
|
|
|
|
#include <metal_stdlib>
|
|
#include <simd/simd.h>
|
|
|
|
using namespace metal;
|
|
|
|
struct bufA
|
|
{
|
|
uint _data[1];
|
|
};
|
|
|
|
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);
|
|
}
|
|
|