aboutsummaryrefslogtreecommitdiff
path: root/backends/graphics/opengl/opengl-graphics.h
diff options
context:
space:
mode:
Diffstat (limited to 'backends/graphics/opengl/opengl-graphics.h')
-rw-r--r--backends/graphics/opengl/opengl-graphics.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/backends/graphics/opengl/opengl-graphics.h b/backends/graphics/opengl/opengl-graphics.h
index 3da501f933..d76e328d07 100644
--- a/backends/graphics/opengl/opengl-graphics.h
+++ b/backends/graphics/opengl/opengl-graphics.h
@@ -100,6 +100,9 @@ public:
bool notifyEvent(const Common::Event &event);
protected:
+
+ virtual void initGL();
+
//
// GFX and video
//
@@ -146,6 +149,8 @@ protected:
virtual void unloadGFXMode();
virtual bool hotswapGFXMode();
+ virtual void setScale(int newScale);
+
//
// Game screen
//
@@ -213,6 +218,11 @@ protected:
virtual void refreshCursor();
virtual void adjustMouseEvent(const Common::Event &event);
virtual void setMousePos(int x, int y);
+
+ //
+ // Misc
+ //
+ virtual bool saveScreenshot(const char *filename);
};
#endif