diff options
Diffstat (limited to 'src/openglgraphics.h')
-rw-r--r-- | src/openglgraphics.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/openglgraphics.h b/src/openglgraphics.h index 16448a79..8361f7f7 100644 --- a/src/openglgraphics.h +++ b/src/openglgraphics.h @@ -102,10 +102,6 @@ class OpenGLGraphics : public Graphics void setTargetPlane(int width, int height); - void drawQuadArrayfi(int size); - - void drawQuadArrayii(int size); - /** * Takes a screenshot and returns it as SDL surface. */ @@ -119,6 +115,10 @@ class OpenGLGraphics : public Graphics void setTexturingAndBlending(bool enable); private: + void drawQuadArrayfi(int size); + + void drawQuadArrayii(int size); + GLfloat *mFloatTexArray; GLint *mIntTexArray; GLint *mIntVertArray; |