diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-11-21 04:08:09 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-11-21 13:19:22 +0300 |
commit | 459c2c3a6decbd5576760040f566f1544645c3ac (patch) | |
tree | 16917971820b11a99acc4f875f977811e4474670 /src/mobileopenglgraphics.h | |
parent | 08d0c6de4aa164c690d94622e4a6a6ea57a9efaf (diff) | |
download | plus-459c2c3a6decbd5576760040f566f1544645c3ac.tar.gz plus-459c2c3a6decbd5576760040f566f1544645c3ac.tar.bz2 plus-459c2c3a6decbd5576760040f566f1544645c3ac.tar.xz plus-459c2c3a6decbd5576760040f566f1544645c3ac.zip |
Add some consts to draw backend.
Diffstat (limited to 'src/mobileopenglgraphics.h')
-rw-r--r-- | src/mobileopenglgraphics.h | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/src/mobileopenglgraphics.h b/src/mobileopenglgraphics.h index 046fb1f0e..78d24d5fc 100644 --- a/src/mobileopenglgraphics.h +++ b/src/mobileopenglgraphics.h @@ -62,7 +62,7 @@ class MobileOpenGLGraphics final : public Graphics /** * Draws a resclaled version of the image */ - bool drawRescaledImage(Image *const image, int srcX, int srcY, + bool drawRescaledImage(const Image *const image, int srcX, int srcY, int dstX, int dstY, const int width, const int height, const int desiredWidth, const int desiredHeight, @@ -71,7 +71,7 @@ class MobileOpenGLGraphics final : public Graphics /** * Used to get the smooth rescale option over the standard function. */ - bool drawRescaledImage(Image *const image, int srcX, int srcY, + bool drawRescaledImage(const Image *const image, int srcX, int srcY, int dstX, int dstY, const int width, const int height, const int desiredWidth, const int desiredHeight, @@ -93,14 +93,14 @@ class MobileOpenGLGraphics final : public Graphics void calcImagePattern(GraphicsVertexes *const vert, const Image *const image, const int x, const int y, - const int w, const int h) override; + const int w, const int h) const override; void calcTile(ImageVertexes *const vert, const Image *const image, - int x, int y) override; + int x, int y) const override; - void drawTile(ImageVertexes *const vert) override; + void drawTile(const ImageVertexes *const vert) override; - void drawImagePattern2(GraphicsVertexes *const vert, + void drawImagePattern2(const GraphicsVertexes *const vert, const Image *const image) override; void updateScreen() override; @@ -119,7 +119,7 @@ class MobileOpenGLGraphics final : public Graphics void drawLine(int x1, int y1, int x2, int y2); - void drawRectangle(const gcn::Rectangle &rect, bool filled); + void drawRectangle(const gcn::Rectangle &rect, const bool filled); void drawRectangle(const gcn::Rectangle &rect); @@ -131,11 +131,11 @@ class MobileOpenGLGraphics final : public Graphics GLfloat *floatTexArray, const int size); - inline void drawTriangleArrayfs(int size); + inline void drawTriangleArrayfs(const int size); - inline void drawLineArrays(int size); + inline void drawLineArrays(const int size); - inline void drawVertexes(NormalOpenGLGraphicsVertexes &ogl); + inline void drawVertexes(const NormalOpenGLGraphicsVertexes &ogl); void initArrays() override; @@ -177,8 +177,6 @@ class MobileOpenGLGraphics final : public Graphics void setTexturingAndBlending(bool enable); - void logString(const char *format, GLenum num); - void updateMemoryInfo(); void debugBindTexture(const Image *image); |