diff options
Diffstat (limited to 'src/render/graphics.h')
-rw-r--r-- | src/render/graphics.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/render/graphics.h b/src/render/graphics.h index f8d10a832..0f0e14776 100644 --- a/src/render/graphics.h +++ b/src/render/graphics.h @@ -105,6 +105,9 @@ struct SDL_Window; class Graphics notfinal { public: +#ifdef USE_OPENGL + friend class OpenGLScreenshotHelper; +#endif friend class SdlScreenshotHelper; A_DELETE_COPY(Graphics) @@ -246,14 +249,6 @@ class Graphics notfinal */ int getHeight() const A_WARN_UNUSED; - /** - * Takes a screenshot and returns it as SDL surface. - */ - virtual SDL_Surface *getScreenshot() A_WARN_UNUSED = 0; - - virtual void prepareScreenshot() - { } - int getMemoryUsage() const A_WARN_UNUSED; virtual void drawNet(const int x1, const int y1, |