Wiki Page Content

Differences between revisions 5 and 6
Revision 5 as of 2014-08-03 06:05:52
Size: 980
Editor: gerstrong
Comment: Example added
Revision 6 as of 2014-08-04 19:02:51
Size: 977
Comment: Removed space and changed value in example.
Deletions are marked like this. Additions are marked like this.
Line 24: Line 24:
SDL_SetHint (SDL_HINT_RENDER_SCALE_QUALITY, Value); SDL_SetHint(SDL_HINT_RENDER_SCALE_QUALITY, "1");

SDL_SetHint

Use this function to set a hint with normal priority.

Syntax

SDL_bool SDL_SetHint(const char* name,
                     const char* value)

Function Parameters

name

the hint to set; see the list of hints on CategoryHints for details

value

the value of the hint variable

Return Value

Returns SDL_TRUE if the hint was set, SDL_FALSE otherwise.

Code Examples

SDL_SetHint(SDL_HINT_RENDER_SCALE_QUALITY, "1");

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.


CategoryAPI, CategoryHints

None: SDL_SetHint (last edited 2014-08-04 19:02:51 by PhilippWiesemann)

(Page Info.)
Feedback
Please include your contact information if you'd like to receive a reply.
Submit