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.

\since This function is available since SDL 2.26.0.

\sa SDL_GetHint \sa SDL_SetHint \sa SDL_ResetHint

extern DECLSPEC void SDLCALL SDL_ResetHints(void)

Implementation

void sdlResetHints() {
  final sdlResetHintsLookupFunction = libSdl2
      .lookupFunction<Void Function(), void Function()>('SDL_ResetHints');
  return sdlResetHintsLookupFunction();
}