Wiki Page Content

Revision 7 as of 2010-10-17 04:34:51

Clear message

SDL_GetDisplayMode

Use this function to fill in information about a specific display mode.

Syntax

int SDL_GetDisplayMode(int              index,
                       SDL_DisplayMode* mode)

Function Parameters

index

the index of the requested display mode

mode

an SDL_DisplayMode structure filled in with the mode index

Return Value

Returns 0 on success or a negative error code on failure; call SDL_GetError() for more information.

Code Examples

You can add your code example here

Remarks

The display modes are sorted in this priority:

  • bits per pixel -> more colors to fewer colors

  • width -> largest to smallest

  • height -> largest to smallest

  • refresh rate -> highest to lowest


CategoryAPI, CategoryVideo

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