logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SDL_AtomicIncRef - Increment an atomic variable used as a reference count.

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_AtomicIncRef - Increment an atomic variable used as a reference count.

Return Value

       Returns the previous value of the atomic variable.

See Also

(3), SDL_AtomicDecRef(3)

Simple Directmedia Layer                           SDL 3.2.10                                SDL_AtomicIncRef(3)

Synopsis

#include"SDL3/SDL.h"#defineSDL_AtomicIncRef(a)SDL_AddAtomicInt(a,1)

Thread Safety

       It is safe to call this macro from any thread.

See Also