Finish an initialization state transition.
Defined in <SDL3/SDL_mutex.h>
void SDL_SetInitialized(SDL_InitState *state, bool initialized);
SDL_InitState * | state | the initialization state to check. |
bool | initialized | the new initialization state. |
This function sets the status of the passed in state to SDL_INIT_STATUS_INITIALIZED
or SDL_INIT_STATUS_UNINITIALIZED
and allows any threads waiting for the status to proceed.
It is safe to call this function from any thread.
This function is available since SDL 3.1.3.