diff options
Diffstat (limited to 'src/openglgraphics.cpp')
-rw-r--r-- | src/openglgraphics.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/openglgraphics.cpp b/src/openglgraphics.cpp index b979cb473..4f800bf9b 100644 --- a/src/openglgraphics.cpp +++ b/src/openglgraphics.cpp @@ -1160,9 +1160,6 @@ void OpenGLGraphics::drawPoint(int x, int y) void OpenGLGraphics::drawLine(int x1, int y1, int x2, int y2) { - unsigned int vp = 4; - const unsigned int vLimit = vertexBufSize * 4; - setTexturingAndBlending(false); glDisableClientState(GL_TEXTURE_COORD_ARRAY); @@ -1171,7 +1168,7 @@ void OpenGLGraphics::drawLine(int x1, int y1, int x2, int y2) mFloatTexArray[2] = static_cast<float>(x2) + 0.5f; mFloatTexArray[3] = static_cast<float>(y2) + 0.5f; - drawLineArrayf(vp); + drawLineArrayf(4); glEnableClientState(GL_TEXTURE_COORD_ARRAY); } |