SDL_SetHintWithPriority - Man Page
Set a hint with a specific priority.
Header File
Defined in SDL3/SDL_hints.h
Synopsis
#include "SDL3/SDL.h" bool SDL_SetHintWithPriority(const char *name, const char *value, SDL_HintPriority priority);
Description
The priority controls the behavior when setting a hint that already has a value. Hints will replace existing hints of their priority and lower. Environment variables are considered to have override priority.
Function Parameters
- name
the hint to set.
- value
the value of the hint variable.
- priority
the SDL_HintPriority
level for the hint.
Return Value
Returns true on success or false on failure; call
SDL_GetError () for more information.
Thread Safety
It is safe to call this function from any thread.
Availability
This function is available since SDL 3.2.0.
See Also
·(3), SDL_GetHint(3), ·(3), SDL_ResetHint(3), ·(3), SDL_SetHint(3)
Referenced By
SDL_GetHint(3), SDL_SetHint(3).
SDL 3.2.2 Simple Directmedia Layer SDL3 FUNCTIONS