summaryrefslogtreecommitdiff
path: root/src/render/graphics.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-12-23 01:49:22 +0300
committerAndrei Karas <akaras@inbox.ru>2015-12-23 01:49:22 +0300
commit2aa11a7780c0ee8244be91b45dc3c6c9927c1efe (patch)
tree6a8ee0f5f2d34c203ffa97fc81eb2f00b56243a2 /src/render/graphics.h
parentb8835bb8f60ebaaedbf474624ffceb1b181c3036 (diff)
downloadplus-2aa11a7780c0ee8244be91b45dc3c6c9927c1efe.tar.gz
plus-2aa11a7780c0ee8244be91b45dc3c6c9927c1efe.tar.bz2
plus-2aa11a7780c0ee8244be91b45dc3c6c9927c1efe.tar.xz
plus-2aa11a7780c0ee8244be91b45dc3c6c9927c1efe.zip
Add const attribute to render.
Diffstat (limited to 'src/render/graphics.h')
-rw-r--r--src/render/graphics.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/render/graphics.h b/src/render/graphics.h
index 0f0e14776..516e56c63 100644
--- a/src/render/graphics.h
+++ b/src/render/graphics.h
@@ -237,7 +237,11 @@ class Graphics notfinal
*/
virtual void updateScreen() = 0;
+#ifdef USE_SDL2
void setWindowSize(const int width, const int height);
+#else
+ void setWindowSize(const int width, const int height) A_CONST;
+#endif
/**
* Returns the width of the screen.
@@ -386,7 +390,11 @@ class Graphics notfinal
virtual void drawRectangle(const Rect &rectangle) = 0;
#ifdef USE_OPENGL
+#ifdef USE_SDL2
virtual void createGLContext();
+#else
+ virtual void createGLContext() A_CONST;
+#endif
#endif
/**