diff options
Diffstat (limited to 'src/render/normalopenglgraphics.cpp')
-rw-r--r-- | src/render/normalopenglgraphics.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/render/normalopenglgraphics.cpp b/src/render/normalopenglgraphics.cpp index 54d773cc4..2348fa22b 100644 --- a/src/render/normalopenglgraphics.cpp +++ b/src/render/normalopenglgraphics.cpp @@ -776,7 +776,7 @@ void NormalOpenGLGraphics::drawRescaledPattern(const Image *const image, } inline void NormalOpenGLGraphics::drawVertexes(const - NormalOpenGLGraphicsVertexes + OpenGLGraphicsVertexes &ogl) { const std::vector<GLint*> &intVertPool = ogl.mIntVertPool; @@ -848,7 +848,7 @@ void NormalOpenGLGraphics::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 @@ -1007,7 +1007,7 @@ void NormalOpenGLGraphics::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(); |