Function spirv_std::arch::atomic_i_sub
source · pub unsafe fn atomic_i_sub<I: Integer, const SCOPE: u32, const SEMANTICS: u32>(
ptr: &mut I,
value: I
) -> I
Expand description
Perform the following steps atomically with respect to any other atomic
accesses within SCOPE
to the same location:
- load through
ptr
to get an original value, - get a new value by integer subtraction of original value and
value
, and - store the new value back through
ptr
.
The result is the Original Value.