mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-15 09:35:57 +00:00
Change-Id: I81b69d23e40675d7f525e6369afec9aa0659d043 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/92321 Reviewed-by: Dan Sinclair <dsinclair@chromium.org> Commit-Queue: Ben Clayton <bclayton@google.com> Reviewed-by: Antonio Maiorano <amaiorano@google.com> Kokoro: Kokoro <noreply+kokoro@google.com>
25 lines
470 B
HLSL
25 lines
470 B
HLSL
RWByteAddressBuffer sb_rw : register(u0, space0);
|
|
|
|
uint tint_atomicSub(RWByteAddressBuffer buffer, uint offset, uint value) {
|
|
uint original_value = 0;
|
|
buffer.InterlockedAdd(offset, -value, original_value);
|
|
return original_value;
|
|
}
|
|
|
|
|
|
void atomicSub_15bfc9() {
|
|
uint arg_1 = 1u;
|
|
uint res = tint_atomicSub(sb_rw, 0u, arg_1);
|
|
}
|
|
|
|
void fragment_main() {
|
|
atomicSub_15bfc9();
|
|
return;
|
|
}
|
|
|
|
[numthreads(1, 1, 1)]
|
|
void compute_main() {
|
|
atomicSub_15bfc9();
|
|
return;
|
|
}
|