diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-16 20:39:33 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-16 20:39:33 +0300 |
commit | bc92643d8db723b5049db2dbad1ce052a0ae77a9 (patch) | |
tree | 4471be99711ee310c811e990d7c210e2393aeb6e /src/normalopenglgraphics.cpp | |
parent | 82cc576b7896f39bcf71aa85c8c4b3ef786c065b (diff) | |
download | plus-bc92643d8db723b5049db2dbad1ce052a0ae77a9.tar.gz plus-bc92643d8db723b5049db2dbad1ce052a0ae77a9.tar.bz2 plus-bc92643d8db723b5049db2dbad1ce052a0ae77a9.tar.xz plus-bc92643d8db723b5049db2dbad1ce052a0ae77a9.zip |
Fix code style and some other minor issues.
Diffstat (limited to 'src/normalopenglgraphics.cpp')
-rw-r--r-- | src/normalopenglgraphics.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/normalopenglgraphics.cpp b/src/normalopenglgraphics.cpp index 39059d7c1..32175c05f 100644 --- a/src/normalopenglgraphics.cpp +++ b/src/normalopenglgraphics.cpp @@ -870,8 +870,8 @@ void NormalOpenGLGraphics::calcTile(ImageVertexes *const vert, vp += 8; if (vp >= vLimit) { - floatTexArray = ogl.switchFloatTexArray(); - intVertArray = ogl.switchIntVertArray(); + ogl.switchFloatTexArray(); + ogl.switchIntVertArray(); ogl.switchVp(vp); vp = 0; } @@ -908,8 +908,8 @@ void NormalOpenGLGraphics::calcTile(ImageVertexes *const vert, vp += 8; if (vp >= vLimit) { - intTexArray = ogl.switchIntTexArray(); - intVertArray = ogl.switchIntVertArray(); + ogl.switchIntTexArray(); + ogl.switchIntVertArray(); ogl.switchVp(vp); vp = 0; } |