Mercurial > fife-parpg
diff engine/core/video/video.i @ 636:f7863bfa92cd
* Changed the way screen resolutions are detected
* Added the ability to query the video driver name
author | prock@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Wed, 06 Oct 2010 20:54:28 +0000 |
parents | 3094988564d5 |
children | 3822b30fd98c |
line wrap: on
line diff
--- a/engine/core/video/video.i Wed Oct 06 19:19:08 2010 +0000 +++ b/engine/core/video/video.i Wed Oct 06 20:54:28 2010 +0000 @@ -231,9 +231,6 @@ class ScreenMode { public: - ScreenMode(); - ScreenMode(uint16_t width, uint16_t height, uint16_t bpp, uint32_t SDLFlags); - ScreenMode(const ScreenMode& rhs); ~ScreenMode(); uint16_t getWidth() const; @@ -251,5 +248,6 @@ void fillDeviceCaps(); std::vector<ScreenMode> getSupportedScreenModes() const; + std::string getDriverName() const; }; }