blob: 4d1bb52ea2bf2ca0349f04b4f9d619045f05e8ba [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct SB_RW {
/* 0x0000 */ atomic_uint arg_0;
};
void atomicAdd_8a199a(device SB_RW& sb_rw) {
uint res = atomic_fetch_add_explicit(&(sb_rw.arg_0), 1u, memory_order_relaxed);
}
fragment void fragment_main(device SB_RW& sb_rw [[buffer(0)]]) {
atomicAdd_8a199a(sb_rw);
return;
}
kernel void compute_main(device SB_RW& sb_rw [[buffer(0)]]) {
atomicAdd_8a199a(sb_rw);
return;
}