Function SDL_ShouldQuit

pub unsafe extern "C" fn SDL_ShouldQuit(
    state: *mut SDL_InitState,
) -> bool
Available on crate feature dep_sdl3 only.
Expand description

Return whether cleanup should be done.

This function checks the passed in state and if cleanup should be done, sets the status to SDL_INIT_STATUS_UNINITIALIZING and returns true.

If this function returns true, the calling code must call SDL_SetInitialized() to complete the cleanup.

§Parameters

  • state: the initialization state to check.

§Return value

Returns true if cleanup needs to be done, false otherwise.

§Thread safety

It is safe to call this function from any thread.

§Availability

This function is available since SDL 3.2.0.

§See also