sdlResetHints function
void
sdlResetHints()
Reset all hints to the default values.
This will reset all hints to the value of the associated environment variable, or NULL if the environment isn't set. Callbacks will be called normally with this change.
\threadsafety It is safe to call this function from any thread.
\since This function is available since SDL 3.1.3.
\sa SDL_ResetHint
extern SDL_DECLSPEC void SDLCALL SDL_ResetHints(void)
Implementation
void sdlResetHints() {
final sdlResetHintsLookupFunction = libSdl3
.lookupFunction<Void Function(), void Function()>('SDL_ResetHints');
return sdlResetHintsLookupFunction();
}