summaryrefslogtreecommitdiff
path: root/src/render/nullopenglgraphics.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-12-30 22:05:55 +0300
committerAndrei Karas <akaras@inbox.ru>2013-12-30 22:05:55 +0300
commit080291d23a1a28cf7c5e3e01eb4ecb1637a1b42b (patch)
treeadb12b2ed2020fc5c636d3c5cb7ba1ee0636f9e0 /src/render/nullopenglgraphics.cpp
parent9aa2b0ffb97f8a1b5ae5201983318d03615c11e1 (diff)
downloadplus-080291d23a1a28cf7c5e3e01eb4ecb1637a1b42b.tar.gz
plus-080291d23a1a28cf7c5e3e01eb4ecb1637a1b42b.tar.bz2
plus-080291d23a1a28cf7c5e3e01eb4ecb1637a1b42b.tar.xz
plus-080291d23a1a28cf7c5e3e01eb4ecb1637a1b42b.zip
add calcTileVertexesInline into renders for internal usage.
Diffstat (limited to 'src/render/nullopenglgraphics.cpp')
-rw-r--r--src/render/nullopenglgraphics.cpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/render/nullopenglgraphics.cpp b/src/render/nullopenglgraphics.cpp
index fa8e8e0e4..d372aa7dc 100644
--- a/src/render/nullopenglgraphics.cpp
+++ b/src/render/nullopenglgraphics.cpp
@@ -689,11 +689,11 @@ void NullOpenGLGraphics::calcTileCollection(ImageCollection *const vertCol,
vertCol->currentVert = vert;
vert->image = image;
vertCol->draws.push_back(vert);
- calcTileVertexes(vert, image, x, y);
+ calcTileVertexesInline(vert, image, x, y);
}
else
{
- calcTileVertexes(vertCol->currentVert, image, x, y);
+ calcTileVertexesInline(vertCol->currentVert, image, x, y);
}
}
@@ -743,6 +743,13 @@ void NullOpenGLGraphics::calcTileVertexes(ImageVertexes *const vert,
const Image *const image,
int dstX, int dstY) const
{
+ calcTileVertexesInline(vert, image, dstX, dstY);
+}
+
+void NullOpenGLGraphics::calcTileVertexesInline(ImageVertexes *const vert,
+ const Image *const image,
+ int dstX, int dstY) const
+{
if (!vert || !image)
return;