diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-30 21:21:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-30 21:21:40 +0300 |
commit | 9aa2b0ffb97f8a1b5ae5201983318d03615c11e1 (patch) | |
tree | 21df896ff8139745775d41c1c8f82a4c6431698e /src/render/mobileopenglgraphics.cpp | |
parent | 96f7714510cba0a84cd749869f236188473c4553 (diff) | |
download | plus-9aa2b0ffb97f8a1b5ae5201983318d03615c11e1.tar.gz plus-9aa2b0ffb97f8a1b5ae5201983318d03615c11e1.tar.bz2 plus-9aa2b0ffb97f8a1b5ae5201983318d03615c11e1.tar.xz plus-9aa2b0ffb97f8a1b5ae5201983318d03615c11e1.zip |
add calcPatternInline into renders for internal usage.
Diffstat (limited to 'src/render/mobileopenglgraphics.cpp')
-rw-r--r-- | src/render/mobileopenglgraphics.cpp | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/render/mobileopenglgraphics.cpp b/src/render/mobileopenglgraphics.cpp index 1b57f7160..52ed81add 100644 --- a/src/render/mobileopenglgraphics.cpp +++ b/src/render/mobileopenglgraphics.cpp @@ -584,6 +584,14 @@ void MobileOpenGLGraphics::calcPattern(ImageVertexes *const vert, const int x, const int y, const int w, const int h) const { + calcPatternInline(vert, image, x, y, w, h); +} + +void MobileOpenGLGraphics::calcPatternInline(ImageVertexes *const vert, + const Image *const image, + const int x, const int y, + const int w, const int h) const +{ if (!image || !vert) return; @@ -700,7 +708,7 @@ void MobileOpenGLGraphics::calcPattern(ImageCollection* const vertCol, vert = vertCol->currentVert; } - calcPattern(vert, image, x, y, w, h); + calcPatternInline(vert, image, x, y, w, h); } void MobileOpenGLGraphics::calcTileVertexes(ImageVertexes *const vert, @@ -1268,7 +1276,7 @@ void MobileOpenGLGraphics::drawImageRect(const int x, const int y, const int w, const int h, const ImageRect &imgRect) { - #include "render/openglgraphics_drawImageRect.hpp" + #include "render/graphics_drawImageRect.hpp" } void MobileOpenGLGraphics::calcImageRect(ImageVertexes *const vert, @@ -1276,7 +1284,7 @@ void MobileOpenGLGraphics::calcImageRect(ImageVertexes *const vert, const int w, const int h, const ImageRect &imgRect) { - #include "render/openglgraphics_calcImageRect.hpp" + #include "render/graphics_calcImageRect.hpp" } #ifdef DEBUG_BIND_TEXTURE |