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_uint arg_0;
|
2021-06-18 18:56:13 +00:00
|
|
|
};
|
|
|
|
|
2023-03-06 18:25:08 +00:00
|
|
|
void atomicOr_5e95d4(device SB_RW* const tint_symbol, device uint* const tint_symbol_1) {
|
2021-10-28 15:00:39 +00:00
|
|
|
uint res = atomic_fetch_or_explicit(&((*(tint_symbol)).arg_0), 1u, memory_order_relaxed);
|
2023-03-06 18:25:08 +00:00
|
|
|
*(tint_symbol_1) = res;
|
2021-06-18 18:56:13 +00:00
|
|
|
}
|
|
|
|
|
2023-03-06 18:25:08 +00:00
|
|
|
fragment void fragment_main(device SB_RW* tint_symbol_2 [[buffer(0)]], device uint* tint_symbol_3 [[buffer(1)]]) {
|
|
|
|
atomicOr_5e95d4(tint_symbol_2, tint_symbol_3);
|
2021-06-29 11:53:15 +00:00
|
|
|
return;
|
2021-06-18 18:56:13 +00:00
|
|
|
}
|
|
|
|
|
2023-03-06 18:25:08 +00:00
|
|
|
kernel void compute_main(device SB_RW* tint_symbol_4 [[buffer(0)]], device uint* tint_symbol_5 [[buffer(1)]]) {
|
|
|
|
atomicOr_5e95d4(tint_symbol_4, tint_symbol_5);
|
2021-06-29 11:53:15 +00:00
|
|
|
return;
|
2021-06-18 18:56:13 +00:00
|
|
|
}
|
|
|
|
|