diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-30 18:45:00 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-30 18:45:00 +0300 |
commit | e29a87a240fe2f33c51f4e15067122960f667d66 (patch) | |
tree | ec58d6c28e3ce18966b32495df860bc85aa94f87 /src/render/sdl2graphics.cpp | |
parent | 00d8cfee5bc76c59e5c3195f4434c4a4fb741d0e (diff) | |
download | ManaVerse-e29a87a240fe2f33c51f4e15067122960f667d66.tar.gz ManaVerse-e29a87a240fe2f33c51f4e15067122960f667d66.tar.bz2 ManaVerse-e29a87a240fe2f33c51f4e15067122960f667d66.tar.xz ManaVerse-e29a87a240fe2f33c51f4e15067122960f667d66.zip |
add drawPatternInline into renders for internal usage.
Diffstat (limited to 'src/render/sdl2graphics.cpp')
-rw-r--r-- | src/render/sdl2graphics.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/render/sdl2graphics.cpp b/src/render/sdl2graphics.cpp index dbfe7ed1e..a91548416 100644 --- a/src/render/sdl2graphics.cpp +++ b/src/render/sdl2graphics.cpp @@ -232,6 +232,13 @@ void SDLGraphics::drawPattern(const Image *const image, const int x, const int y, const int w, const int h) { + drawParrernInline(image, x, y, w, h); +} + +void SDLGraphics::drawPatternInline(const Image *const image, + const int x, const int y, + const int w, const int h) +{ FUNC_BLOCK("Graphics::drawPattern", 1) // Check that preconditions for blitting are met. if (!mWindow || !image) |