SDL_SetHintWithPriority - Man Page
Set a hint with a specific priority.
Synopsis
#include <SDL3/SDL_hints.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
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
Referenced By
SDL_GetHint(3), SDL_SetHint(3).
SDL 3.2.16 Simple Directmedia Layer SDL3 FUNCTIONS