SDL_AtomicIncRef - Man Page
Increment an atomic variable used as a reference count.
Synopsis
#include <SDL3/SDL_atomic.h> #define SDL_AtomicIncRef(a) SDL_AddAtomicInt(a, 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 increment.
Return Value
Returns the previous value of the atomic variable.
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_AtomicDecRef(3).
SDL 3.2.16 Simple Directmedia Layer SDL3 FUNCTIONS