SDL_AtomicDecRef - Decrement an atomic variable used as a reference count.
Contents
Availability
This macro is available since SDL 3.2.0.
Description
Note:Ifyoudon'tknowwhatthismacroisfor,youshouldn'tuseit!
Header File
Defined in SDL3/SDL_atomic.h
Name
SDL_AtomicDecRef - Decrement an atomic variable used as a reference count.
Return Value
Returns true if the variable reached zero after decrementing, false otherwise.
See Also
•(3), SDL_AtomicIncRef(3) Simple Directmedia Layer SDL 3.2.10 SDL_AtomicDecRef(3)
Synopsis
#include"SDL3/SDL.h"#defineSDL_AtomicDecRef(a)(SDL_AddAtomicInt(a,-1)==1)
Thread Safety
It is safe to call this macro from any thread.
