summaryrefslogtreecommitdiff
path: root/src/resources/openglscreenshothelper.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-12-15 23:28:27 +0300
committerAndrei Karas <akaras@inbox.ru>2015-12-15 23:28:27 +0300
commit4ee3c82fc998b984a2e75d042fffe45765844ca7 (patch)
treec25ec4049d2ab5dc426cb998f6f8383b3315f705 /src/resources/openglscreenshothelper.h
parente45350d5e4505cd9ef20bd9efd80fa5fa86e3d62 (diff)
downloadplus-4ee3c82fc998b984a2e75d042fffe45765844ca7.tar.gz
plus-4ee3c82fc998b984a2e75d042fffe45765844ca7.tar.bz2
plus-4ee3c82fc998b984a2e75d042fffe45765844ca7.tar.xz
plus-4ee3c82fc998b984a2e75d042fffe45765844ca7.zip
Add openglscreenshothelper.
Diffstat (limited to 'src/resources/openglscreenshothelper.h')
-rw-r--r--src/resources/openglscreenshothelper.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/resources/openglscreenshothelper.h b/src/resources/openglscreenshothelper.h
new file mode 100644
index 000000000..fe9a7cfeb
--- /dev/null
+++ b/src/resources/openglscreenshothelper.h
@@ -0,0 +1,54 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2004-2009 The Mana World Development Team
+ * Copyright (C) 2009-2010 The Mana Developers
+ * Copyright (C) 2011-2015 The ManaPlus Developers
+ *
+ * This file is part of The ManaPlus Client.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef RESOURCES_SDL2IMAGEHELPER_H
+#define RESOURCES_SDL2IMAGEHELPER_H
+
+#ifdef USE_OPENGL
+
+#include "resources/screenshothelper.h"
+
+#include "resources/fboinfo.h"
+
+#include "localconsts.h"
+
+class OpenGLScreenshotHelper final : public ScreenshotHelper
+{
+ public:
+ OpenGLScreenshotHelper();
+
+ A_DELETE_COPY(OpenGLScreenshotHelper)
+
+ ~OpenGLScreenshotHelper();
+
+ void prepare(const int width,
+ const int height) override final;
+
+ SDL_Surface *getScreenshot(const int width,
+ const int height) override final;
+
+ private:
+ FBOInfo mFbo;
+};
+
+#endif // USE_OPENGL
+#endif // RESOURCES_SDL2IMAGEHELPER_H