diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-06-12 22:43:41 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-06-12 22:43:41 +0300 |
commit | bcb340f51ca2d69fd062d6548ef283303d43d9ac (patch) | |
tree | b952e8beb18f615f25ad4e0a075e561fc80c55a7 /src/render/nullopenglgraphics.cpp | |
parent | 720dbe1e5a90adb66ada166090e34a571e24ff0a (diff) | |
download | plus-bcb340f51ca2d69fd062d6548ef283303d43d9ac.tar.gz plus-bcb340f51ca2d69fd062d6548ef283303d43d9ac.tar.bz2 plus-bcb340f51ca2d69fd062d6548ef283303d43d9ac.tar.xz plus-bcb340f51ca2d69fd062d6548ef283303d43d9ac.zip |
Rename NormalOpenGLGraphicsVertexes into OpenGLGraphicsVertexes.
Diffstat (limited to 'src/render/nullopenglgraphics.cpp')
-rw-r--r-- | src/render/nullopenglgraphics.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/render/nullopenglgraphics.cpp b/src/render/nullopenglgraphics.cpp index d6f724f06..bfe9172c8 100644 --- a/src/render/nullopenglgraphics.cpp +++ b/src/render/nullopenglgraphics.cpp @@ -516,7 +516,7 @@ void NullOpenGLGraphics::drawRescaledPattern(const Image *const image, } inline void NullOpenGLGraphics::drawVertexes(const - NormalOpenGLGraphicsVertexes + OpenGLGraphicsVertexes &ogl) { const std::vector<GLint*> &intVertPool = ogl.mIntVertPool; @@ -588,7 +588,7 @@ void NullOpenGLGraphics::calcPatternInline(ImageVertexes* const vert, const unsigned int vLimit = mMaxVertices * 4; - NormalOpenGLGraphicsVertexes &ogl = vert->ogl; + OpenGLGraphicsVertexes &ogl = vert->ogl; unsigned int vp = ogl.continueVp(); // Draw a set of textured rectangles @@ -788,7 +788,7 @@ void NullOpenGLGraphics::calcTileVertexesInline(ImageVertexes *const vert, const unsigned int vLimit = mMaxVertices * 4; - NormalOpenGLGraphicsVertexes &ogl = vert->ogl; + OpenGLGraphicsVertexes &ogl = vert->ogl; // std::vector<int> *vps = ogl.getVp(); unsigned int vp = ogl.continueVp(); |