building ghost-sdl works again.

This commit is contained in:
2013-02-08 08:02:05 +00:00
parent cef952a750
commit 52df65b137
2 changed files with 18 additions and 0 deletions

View File

@@ -114,6 +114,20 @@ GHOST_SystemSDL::init() {
return GHOST_kFailure;
}
/**
* Returns the dimensions of the main display on this system.
* \return The dimension of the main display.
*/
void
GHOST_SystemSDL::getAllDisplayDimensions(GHOST_TUns32& width,
GHOST_TUns32& height) const
{
SDL_DisplayMode mode;
SDL_GetDesktopDisplayMode(0, &mode); /* note, always 0 display */
width = mode.w;
height = mode.h;
}
void
GHOST_SystemSDL::getMainDisplayDimensions(GHOST_TUns32& width,
GHOST_TUns32& height) const

View File

@@ -87,6 +87,10 @@ public:
setCursorPosition(GHOST_TInt32 x,
GHOST_TInt32 y);
void
getAllDisplayDimensions(GHOST_TUns32& width,
GHOST_TUns32& height) const;
void
getMainDisplayDimensions(GHOST_TUns32& width,
GHOST_TUns32& height) const;