diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-15 00:23:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-15 00:23:39 +0300 |
commit | 53d28e67f8b7966596818af7cbfd360df241b332 (patch) | |
tree | 2924b2c260c14bfb8344d75c4bf7482d5263a39a /src/render/mobileopenglgraphics.h | |
parent | 36de2c64d6bba077775360c9c0d681f0a096ffc3 (diff) | |
download | plus-53d28e67f8b7966596818af7cbfd360df241b332.tar.gz plus-53d28e67f8b7966596818af7cbfd360df241b332.tar.bz2 plus-53d28e67f8b7966596818af7cbfd360df241b332.tar.xz plus-53d28e67f8b7966596818af7cbfd360df241b332.zip |
rename calcTile methods into separate names calcTileVertexes, calTileCollection.
Diffstat (limited to 'src/render/mobileopenglgraphics.h')
-rw-r--r-- | src/render/mobileopenglgraphics.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/render/mobileopenglgraphics.h b/src/render/mobileopenglgraphics.h index 55283010e..dd285fdee 100644 --- a/src/render/mobileopenglgraphics.h +++ b/src/render/mobileopenglgraphics.h @@ -105,13 +105,15 @@ class MobileOpenGLGraphics final : public Graphics const int x, const int y, const int w, const int h) const override final; - void calcTile(ImageVertexes *const vert, const Image *const image, - int x, int y) const override final; + void calcTileVertexes(ImageVertexes *const vert, + const Image *const image, + int x, int y) const override final; void drawTile(const ImageCollection *const vertCol) override final; - void calcTile(ImageCollection *const vertCol, - const Image *const image, int x, int y) override final; + void calcTileCollection(ImageCollection *const vertCol, + const Image *const image, + int x, int y) override final; void drawTile(const ImageVertexes *const vert) override final; |