|
⇤ ← Revision 1 as of 2011-03-03 17:07:41
Size: 954
Comment: create page - 2/28 changeset 5421 (2/5 5189)
|
Size: 1034
Comment: update content - w/ Sam; remove draft
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 3: | Line 3: |
| ||<tablewidth="100%" style="color: #FF0000;" :> DRAFT|| | |
| Line 17: | Line 16: |
| ||'''name'''||the hint to set; see the list of Hints on [[http://wiki.libsdl.org/moin.cgi/CategoryHints#Hints|CategoryHints]] for details|| ||'''value'''||the value of the hint variable; see the individual Hint for details|| |
||'''name'''||the hint to set; see the list of hints on [[http://wiki.libsdl.org/moin.cgi/CategoryHints#Hints|CategoryHints]] for details|| ||'''value'''||the value of the hint variable|| |
| Line 31: | Line 30: |
| Hints may 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. |
|
| Line 32: | Line 33: |
| .[[SDL_ClearHints]] ??? |
SDL_SetHint
Use this function to set a hint with normal priority.
Contents
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
You can add your code example here
Remarks
You can add useful comments here
Hints may 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.
