aboutsummaryrefslogtreecommitdiff
path: root/backends/graphics/graphics.h
diff options
context:
space:
mode:
Diffstat (limited to 'backends/graphics/graphics.h')
-rw-r--r--backends/graphics/graphics.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/backends/graphics/graphics.h b/backends/graphics/graphics.h
index 9eb354aee4..0a123d2cb4 100644
--- a/backends/graphics/graphics.h
+++ b/backends/graphics/graphics.h
@@ -85,41 +85,6 @@ public:
virtual void disableCursorPalette(bool disable) = 0;
virtual void displayMessageOnOSD(const char *msg) {}
-
- /**
- * Marks the screen for a full redraw
- */
- virtual void forceFullRedraw() {};
-
- /**
- * Handles the scalar hotkeys
- */
- virtual bool handleScalerHotkeys(Common::KeyCode key) { return false; };
-
- /**
- * Returns if the event passed is a hotkey for the graphics scalers
- */
- virtual bool isScalerHotkey(const Common::Event &event) { return false; };
-
- /**
- * Adjusts mouse event coords for the current scaler
- */
- virtual void adjustMouseEvent(Common::Event &event) {};
-
- /**
- * Updates the mouse cursor position
- */
- virtual void setMousePos(int x, int y) {};
-
- /**
- * Toggles fullscreen
- */
- virtual void toggleFullScreen() {};
-
- /**
- * Saves a screenshot to a file
- */
- virtual bool saveScreenshot(const char *filename) { return false; };
};
#endif