summaryrefslogtreecommitdiff
path: root/src/render/sdl2softwaregraphics.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/sdl2softwaregraphics.h
parent252bfdaf28d9cfa449e6b0af7a15b66483b9c5bd (diff)
downloadManaVerse-00d8cfee5bc76c59e5c3195f4434c4a4fb741d0e.tar.gz
ManaVerse-00d8cfee5bc76c59e5c3195f4434c4a4fb741d0e.tar.bz2
ManaVerse-00d8cfee5bc76c59e5c3195f4434c4a4fb741d0e.tar.xz
ManaVerse-00d8cfee5bc76c59e5c3195f4434c4a4fb741d0e.zip
add drawImageRect into each renderer. but copy function body to shared file.
Diffstat (limited to 'src/render/sdl2softwaregraphics.h')
-rw-r--r--src/render/sdl2softwaregraphics.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/render/sdl2softwaregraphics.h b/src/render/sdl2softwaregraphics.h
index 658f1d127..441167d01 100644
--- a/src/render/sdl2softwaregraphics.h
+++ b/src/render/sdl2softwaregraphics.h
@@ -148,6 +148,13 @@ class SDL2SoftwareGraphics final : public Graphics
void completeCache() override final;
+ /**
+ * 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);
+
protected:
int SDL_FakeUpperBlit(const SDL_Surface *const src,
SDL_Rect *const srcrect,