diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-12-16 01:03:19 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-12-16 01:03:19 +0300 |
commit | 78fb544aeb8761e8d554487487bc27e610822e2d (patch) | |
tree | 45ec42f5dcba94cd391f54a4cef2c017d7318d38 /src/resources/openglscreenshothelper.h | |
parent | fcdc44b21bda79052205ca1884b7f3a1ebd32957 (diff) | |
download | plus-78fb544aeb8761e8d554487487bc27e610822e2d.tar.gz plus-78fb544aeb8761e8d554487487bc27e610822e2d.tar.bz2 plus-78fb544aeb8761e8d554487487bc27e610822e2d.tar.xz plus-78fb544aeb8761e8d554487487bc27e610822e2d.zip |
Use screenshort helpers for creating screenshots
Diffstat (limited to 'src/resources/openglscreenshothelper.h')
-rw-r--r-- | src/resources/openglscreenshothelper.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/resources/openglscreenshothelper.h b/src/resources/openglscreenshothelper.h index fe9a7cfeb..ef4501cde 100644 --- a/src/resources/openglscreenshothelper.h +++ b/src/resources/openglscreenshothelper.h @@ -20,8 +20,8 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef RESOURCES_SDL2IMAGEHELPER_H -#define RESOURCES_SDL2IMAGEHELPER_H +#ifndef RESOURCES_OPENGLSCREENSHOTHELPER_H +#define RESOURCES_OPENGLSCREENSHOTHELPER_H #ifdef USE_OPENGL @@ -40,15 +40,13 @@ class OpenGLScreenshotHelper final : public ScreenshotHelper ~OpenGLScreenshotHelper(); - void prepare(const int width, - const int height) override final; + void prepare() override final; - SDL_Surface *getScreenshot(const int width, - const int height) override final; + SDL_Surface *getScreenshot() override final; private: FBOInfo mFbo; }; #endif // USE_OPENGL -#endif // RESOURCES_SDL2IMAGEHELPER_H +#endif // RESOURCES_OPENGLSCREENSHOTHELPER_H |