mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-05 11:45:54 +00:00
Common logic between the HLSL, WGSL and MSL writers has been moved into the TextGenerator base class. Fixed: tint:892 Change-Id: I0f469516947fe64817ce6251e436da74e5e176e8 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/56068 Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Ben Clayton <bclayton@chromium.org> Reviewed-by: James Price <jrprice@google.com>
18 lines
547 B
Plaintext
18 lines
547 B
Plaintext
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
void atomicLoad_afcc03(threadgroup atomic_int* const tint_symbol_1) {
|
|
int res = atomic_load_explicit(&(*(tint_symbol_1)), memory_order_relaxed);
|
|
}
|
|
|
|
kernel void compute_main(uint local_invocation_index [[thread_index_in_threadgroup]]) {
|
|
threadgroup atomic_int tint_symbol_2;
|
|
if ((local_invocation_index == 0u)) {
|
|
atomic_store_explicit(&(tint_symbol_2), int(), memory_order_relaxed);
|
|
}
|
|
threadgroup_barrier(mem_flags::mem_threadgroup);
|
|
atomicLoad_afcc03(&(tint_symbol_2));
|
|
return;
|
|
}
|
|
|