On SDL-setHint documentation page says that the function first argument is a name and ask the user to check "SDL.hint" for the possible values but there is not SDL.hint table defined.
Looking the source code, I noticed that the name that should be used as the first parameter is the original SDL2 Category Hints like "SDL_HINT_RENDER_SCALE_QUALITY" . The complete list (for those looking for those values) is available in this link.
On SDL-setHint documentation page says that the function first argument is a
nameand ask the user to check "SDL.hint" for the possible values but there is not SDL.hint table defined.Looking the source code, I noticed that the
namethat should be used as the first parameter is the original SDL2 Category Hints like "SDL_HINT_RENDER_SCALE_QUALITY" . The complete list (for those looking for those values) is available in this link.