mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-14 09:06:11 +00:00
Polyfill this for HLSL using an atomic add with the operand negated. Fixed: tint:1130 Change-Id: Ifa32d58973f1b48593ec0f6320f47f4358a5a3a9 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/62760 Auto-Submit: James Price <jrprice@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Ben Clayton <bclayton@google.com> Reviewed-by: Ben Clayton <bclayton@google.com>
11 lines
188 B
WebGPU Shading Language
11 lines
188 B
WebGPU Shading Language
var<workgroup> arg_0 : atomic<i32>;
|
|
|
|
fn atomicSub_77883a() {
|
|
var res : i32 = atomicSub(&(arg_0), 1);
|
|
}
|
|
|
|
[[stage(compute), workgroup_size(1)]]
|
|
fn compute_main() {
|
|
atomicSub_77883a();
|
|
}
|