diff options
Diffstat (limited to 'src/mobileopenglgraphics.cpp')
-rw-r--r-- | src/mobileopenglgraphics.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mobileopenglgraphics.cpp b/src/mobileopenglgraphics.cpp index 0a4029621..52e013f41 100644 --- a/src/mobileopenglgraphics.cpp +++ b/src/mobileopenglgraphics.cpp @@ -535,7 +535,8 @@ inline void MobileOpenGLGraphics::drawVertexes(const { const std::vector<GLfloat*> &floatTexPool = ogl.mFloatTexPool; std::vector<GLfloat*>::const_iterator ft; - const std::vector<GLfloat*>::const_iterator ft_end = floatTexPool.end(); + const std::vector<GLfloat*>::const_iterator + ft_end = floatTexPool.end(); for (iv = shortVertPool.begin(), ft = floatTexPool.begin(), ivp = vp.begin(); @@ -922,7 +923,11 @@ void MobileOpenGLGraphics::setColor(const gcn::Color& color) mColorAlpha = (color.a != 255); } +#ifdef ANDROID +void MobileOpenGLGraphics::drawPoint(int x A_UNUSED, int y A_UNUSED) +#else void MobileOpenGLGraphics::drawPoint(int x, int y) +#endif { setTexturingAndBlending(false); restoreColor(); |