dawn-cmake/test/intrinsics/gen/atomicAnd/34edd3.wgsl.expected.hlsl

14 lines
231 B
HLSL

groupshared uint arg_0;
void atomicAnd_34edd3() {
uint atomic_result = 0u;
InterlockedAnd(arg_0, 1u, atomic_result);
uint res = atomic_result;
}
[numthreads(1, 1, 1)]
void compute_main() {
atomicAnd_34edd3();
return;
}