2021-06-29 11:53:15 +00:00
|
|
|
#include <metal_stdlib>
|
2021-06-18 18:56:13 +00:00
|
|
|
|
2021-06-29 11:53:15 +00:00
|
|
|
using namespace metal;
|
2021-06-18 18:56:13 +00:00
|
|
|
struct SB_RW {
|
2021-06-29 11:53:15 +00:00
|
|
|
/* 0x0000 */ atomic_int arg_0;
|
2021-06-18 18:56:13 +00:00
|
|
|
};
|
|
|
|
|
2021-10-28 15:00:39 +00:00
|
|
|
void atomicStore_d1e9a6(device SB_RW* const tint_symbol) {
|
|
|
|
atomic_store_explicit(&((*(tint_symbol)).arg_0), 1, memory_order_relaxed);
|
2021-06-18 18:56:13 +00:00
|
|
|
}
|
|
|
|
|
2021-10-28 15:00:39 +00:00
|
|
|
fragment void fragment_main(device SB_RW* tint_symbol_1 [[buffer(0)]]) {
|
|
|
|
atomicStore_d1e9a6(tint_symbol_1);
|
2021-06-29 11:53:15 +00:00
|
|
|
return;
|
2021-06-18 18:56:13 +00:00
|
|
|
}
|
|
|
|
|
2021-10-28 15:00:39 +00:00
|
|
|
kernel void compute_main(device SB_RW* tint_symbol_2 [[buffer(0)]]) {
|
|
|
|
atomicStore_d1e9a6(tint_symbol_2);
|
2021-06-29 11:53:15 +00:00
|
|
|
return;
|
2021-06-18 18:56:13 +00:00
|
|
|
}
|
|
|
|
|