Mercurial > sdl-ios-xcode
comparison src/video/SDL_sysvideo.h @ 3528:59ff7a2beb57
Added an API function to query geometry of multiple monitors:
SDL_GetDisplayBounds()
Implemented multi-monitor window positions on Windows
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 06 Dec 2009 08:03:38 +0000 |
parents | e7eec78e4b92 |
children | 0267b8b1595c |
comparison
equal
deleted
inserted
replaced
3527:444cb12cadb6 | 3528:59ff7a2beb57 |
---|---|
211 /* | 211 /* |
212 * Display functions | 212 * Display functions |
213 */ | 213 */ |
214 | 214 |
215 /* | 215 /* |
216 * Get the bounds of a display | |
217 */ | |
218 int (*GetDisplayBounds) (_THIS, SDL_VideoDisplay * display, SDL_Rect * rect); | |
219 | |
220 /* | |
216 * Get a list of the available display modes. e.g. | 221 * Get a list of the available display modes. e.g. |
217 * SDL_AddDisplayMode(_this->current_display, mode) | 222 * SDL_AddDisplayMode(_this->current_display, mode) |
218 */ | 223 */ |
219 void (*GetDisplayModes) (_THIS, SDL_VideoDisplay * display); | 224 void (*GetDisplayModes) (_THIS, SDL_VideoDisplay * display); |
220 | 225 |