= SDL_SetHint =
Set a hint with normal priority.
== Syntax ==
SDL_bool SDL_SetHint(const char *name,
const char *value);
== Function Parameters ==
{|
|'''name'''
|the hint to set
|-
|'''value'''
|the value of the hint variable
|}
== Return Value ==
Returns [[SDL_TRUE]] if the hint was set, [[SDL_FALSE]] otherwise.
== Remarks ==
Hints will not be set if there is an existing override hint or environment
variable that takes precedence. You can use [[SDL_SetHintWithPriority]]()
to set the hint with override priority instead.
== Version ==
This function is available since SDL 2.0.0.
== Code Examples ==
SDL_SetHint(SDL_HINT_RENDER_SCALE_QUALITY, "1");
== Related Functions ==
:[[SDL_GetHint]]
:[[SDL_SetHintWithPriority]]
----
[[CategoryAPI]], [[CategoryHints]]