Function SDL_SetCurrentThreadPriority

pub unsafe extern "C" fn SDL_SetCurrentThreadPriority(
    priority: SDL_ThreadPriority,
) -> bool
Available on crate feature dep_sdl3 only.
Expand description

Set the priority for the current thread.

Note that some platforms will not let you alter the priority (or at least, promote the thread to a higher priority) at all, and some require you to be an administrator account. Be prepared for this to fail.

§Parameters

§Return value

Returns true on success or false on failure; call SDL_GetError() for more information.

§Availability

This function is available since SDL 3.2.0.