- added the ability to toggle hardware acceleration and full screen anti-aliasing via ini settings

- added video card info screen to options menu
This commit is contained in:
Mark Vejvoda
2010-07-11 07:38:08 +00:00
parent 472abf62f2
commit 61b77fe645
13 changed files with 172 additions and 9 deletions

View File

@@ -141,7 +141,7 @@ public:
static bool handleEvent();
static void revertMousePos();
static bool isKeyDown() { return isKeyPressedDown; }
static void setupGraphicsScreen(int depthBits=-1, int stencilBits=-1);
static void setupGraphicsScreen(int depthBits=-1, int stencilBits=-1, bool hardware_acceleration=false, bool fullscreen_anti_aliasing=false);
static const bool getIsFullScreen() { return isFullScreen; }
static void setIsFullScreen(bool value) { isFullScreen = value; }
static SDL_keysym getKeystate() { return keystate; }