summaryrefslogtreecommitdiff
path: root/src/render/graphics.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-12-30 18:19:40 +0300
committerAndrei Karas <akaras@inbox.ru>2013-12-30 18:21:13 +0300
commit00d8cfee5bc76c59e5c3195f4434c4a4fb741d0e (patch)
treec536958c8cf2308bd38d92a414e6af0a64a3c844 /src/render/graphics.h
parent252bfdaf28d9cfa449e6b0af7a15b66483b9c5bd (diff)
downloadplus-00d8cfee5bc76c59e5c3195f4434c4a4fb741d0e.tar.gz
plus-00d8cfee5bc76c59e5c3195f4434c4a4fb741d0e.tar.bz2
plus-00d8cfee5bc76c59e5c3195f4434c4a4fb741d0e.tar.xz
plus-00d8cfee5bc76c59e5c3195f4434c4a4fb741d0e.zip
add drawImageRect into each renderer. but copy function body to shared file.
Diffstat (limited to 'src/render/graphics.h')
-rw-r--r--src/render/graphics.h17
1 files changed, 3 insertions, 14 deletions
diff --git a/src/render/graphics.h b/src/render/graphics.h
index 93b2977d6..8567b4c1f 100644
--- a/src/render/graphics.h
+++ b/src/render/graphics.h
@@ -170,12 +170,9 @@ class Graphics : public gcn::Graphics
const int scaledWidth,
const int scaledHeight) = 0;
- /**
- * Draws a rectangle using images. 4 corner images, 4 side images and 1
- * image for the inside.
- */
- void drawImageRect(int x, int y, int w, int h,
- const ImageRect &imgRect);
+ virtual void drawImageRect(const int x, const int y,
+ const int w, const int h,
+ const ImageRect &imgRect) = 0;
bool calcImageRect(ImageVertexes *const vert,
const int x, const int y,
@@ -215,14 +212,6 @@ class Graphics : public gcn::Graphics
const int w, const int h,
const ImageRect &imgRect) = 0;
- /**
- * Draws a rectangle using images. 4 corner images, 4 side images and 1
- * image for the inside.
- */
- inline void drawImageRect(const gcn::Rectangle &area,
- const ImageRect &imgRect)
- { drawImageRect(area.x, area.y, area.width, area.height, imgRect); }
-
virtual void fillRectangle(const gcn::Rectangle& rectangle)
override = 0;