SDL_AtomicDecRef - Man Page
Decrement an atomic variable used as a reference count.
Synopsis
#include <SDL3/SDL_atomic.h> #define SDL_AtomicDecRef(a) (SDL_AddAtomicInt(a, -1) == 1)
Description
Note: If you don't know what this macro is for, you shouldn't use it!
Macro Parameters
- a
a pointer to an SDL_AtomicInt to decrement.
Return Value
Returns true if the variable reached zero after decrementing, false otherwise.
Thread Safety
It is safe to call this macro from any thread.
Availability
This macro is available since SDL 3.2.0.
See Also
Referenced By
SDL_AddAtomicInt(3), SDL_AtomicIncRef(3).
SDL 3.2.16 Simple Directmedia Layer SDL3 FUNCTIONS