From 5546ac2f1a459b3fba47b42d546469cdae3c1c27 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 15 Dec 2013 00:42:06 +0300 Subject: rename drawTile methods into separate names drawTileVertexes, drawTileCollection. --- src/render/graphics.h | 5 +++-- src/render/mobileopenglgraphics.cpp | 5 +++-- src/render/mobileopenglgraphics.h | 5 +++-- src/render/normalopenglgraphics.cpp | 5 +++-- src/render/normalopenglgraphics.h | 5 +++-- src/render/nullopenglgraphics.cpp | 5 +++-- src/render/nullopenglgraphics.h | 5 +++-- src/render/safeopenglgraphics.cpp | 7 ++++--- src/render/safeopenglgraphics.h | 5 +++-- src/render/sdl2graphics.cpp | 5 +++-- src/render/sdl2graphics.h | 7 ++++--- src/render/sdl2softwaregraphics.cpp | 5 +++-- src/render/sdl2softwaregraphics.h | 7 ++++--- src/render/sdlgraphics.cpp | 5 +++-- src/render/sdlgraphics.h | 7 ++++--- src/render/surfacegraphics.h | 7 ++++--- 16 files changed, 53 insertions(+), 37 deletions(-) (limited to 'src/render') diff --git a/src/render/graphics.h b/src/render/graphics.h index d55b326aa..79dc008b9 100644 --- a/src/render/graphics.h +++ b/src/render/graphics.h @@ -243,9 +243,10 @@ class Graphics : public gcn::Graphics { } - virtual void drawTile(const ImageVertexes *const vert) = 0; + virtual void drawTileVertexes(const ImageVertexes *const vert) = 0; - virtual void drawTile(const ImageCollection *const vertCol) = 0; + virtual void drawTileCollection(const ImageCollection + *const vertCol) = 0; virtual void calcTileCollection(ImageCollection *const vertCol, const Image *const image, diff --git a/src/render/mobileopenglgraphics.cpp b/src/render/mobileopenglgraphics.cpp index f8a3fd91e..1d0feb085 100644 --- a/src/render/mobileopenglgraphics.cpp +++ b/src/render/mobileopenglgraphics.cpp @@ -642,7 +642,8 @@ void MobileOpenGLGraphics::calcTileCollection(ImageCollection *const vertCol, } } -void MobileOpenGLGraphics::drawTile(const ImageCollection *const vertCol) +void MobileOpenGLGraphics::drawTileCollection(const ImageCollection + *const vertCol) { const ImageVertexesVector &draws = vertCol->draws; const ImageCollectionCIter it_end = draws.end(); @@ -768,7 +769,7 @@ void MobileOpenGLGraphics::calcTileVertexes(ImageVertexes *const vert, ogl.switchVp(vp); } -void MobileOpenGLGraphics::drawTile(const ImageVertexes *const vert) +void MobileOpenGLGraphics::drawTileVertexes(const ImageVertexes *const vert) { if (!vert) return; diff --git a/src/render/mobileopenglgraphics.h b/src/render/mobileopenglgraphics.h index dd285fdee..ca8d70a3a 100644 --- a/src/render/mobileopenglgraphics.h +++ b/src/render/mobileopenglgraphics.h @@ -109,13 +109,14 @@ class MobileOpenGLGraphics final : public Graphics const Image *const image, int x, int y) const override final; - void drawTile(const ImageCollection *const vertCol) override final; + void drawTileCollection(const ImageCollection + *const vertCol) 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; + void drawTileVertexes(const ImageVertexes *const vert) override final; bool calcWindow(ImageCollection *const vertCol, const int x, const int y, diff --git a/src/render/normalopenglgraphics.cpp b/src/render/normalopenglgraphics.cpp index dd0d75871..76f95cf9c 100644 --- a/src/render/normalopenglgraphics.cpp +++ b/src/render/normalopenglgraphics.cpp @@ -816,7 +816,8 @@ void NormalOpenGLGraphics::calcTileCollection(ImageCollection *const vertCol, } } -void NormalOpenGLGraphics::drawTile(const ImageCollection *const vertCol) +void NormalOpenGLGraphics::drawTileCollection(const ImageCollection + *const vertCol) { const ImageVertexesVector &draws = vertCol->draws; const ImageCollectionCIter it_end = draws.end(); @@ -970,7 +971,7 @@ void NormalOpenGLGraphics::calcTileVertexes(ImageVertexes *const vert, ogl.switchVp(vp); } -void NormalOpenGLGraphics::drawTile(const ImageVertexes *const vert) +void NormalOpenGLGraphics::drawTileVertexes(const ImageVertexes *const vert) { if (!vert) return; diff --git a/src/render/normalopenglgraphics.h b/src/render/normalopenglgraphics.h index 8fc127dbe..7042cf413 100644 --- a/src/render/normalopenglgraphics.h +++ b/src/render/normalopenglgraphics.h @@ -113,9 +113,10 @@ class NormalOpenGLGraphics final : public Graphics const Image *const image, int x, int y) override final; - void drawTile(const ImageCollection *const vertCol) override final; + void drawTileCollection(const ImageCollection *const vertCol) + override final; - void drawTile(const ImageVertexes *const vert) override final; + void drawTileVertexes(const ImageVertexes *const vert) override final; bool calcWindow(ImageCollection *const vertCol, const int x, const int y, diff --git a/src/render/nullopenglgraphics.cpp b/src/render/nullopenglgraphics.cpp index 2c433d804..0a831513b 100644 --- a/src/render/nullopenglgraphics.cpp +++ b/src/render/nullopenglgraphics.cpp @@ -719,7 +719,8 @@ void NullOpenGLGraphics::calcTileCollection(ImageCollection *const vertCol, } } -void NullOpenGLGraphics::drawTile(const ImageCollection *const vertCol) +void NullOpenGLGraphics::drawTileCollection(const ImageCollection + *const vertCol) { const ImageVertexesVector &draws = vertCol->draws; const ImageCollectionCIter it_end = draws.end(); @@ -873,7 +874,7 @@ void NullOpenGLGraphics::calcTileVertexes(ImageVertexes *const vert, ogl.switchVp(vp); } -void NullOpenGLGraphics::drawTile(const ImageVertexes *const vert) +void NullOpenGLGraphics::drawTileVertexes(const ImageVertexes *const vert) { if (!vert) return; diff --git a/src/render/nullopenglgraphics.h b/src/render/nullopenglgraphics.h index 94cda7bb3..82285f90d 100644 --- a/src/render/nullopenglgraphics.h +++ b/src/render/nullopenglgraphics.h @@ -113,9 +113,10 @@ class NullOpenGLGraphics final : public Graphics const Image *const image, int x, int y) override final; - void drawTile(const ImageCollection *const vertCol) override final; + void drawTileCollection(const ImageCollection *const vertCol) + override final; - void drawTile(const ImageVertexes *const vert) override final; + void drawTileVertexes(const ImageVertexes *const vert) override final; bool calcWindow(ImageCollection *const vertCol, const int x, const int y, diff --git a/src/render/safeopenglgraphics.cpp b/src/render/safeopenglgraphics.cpp index 7c1ac0fe4..02369fef4 100644 --- a/src/render/safeopenglgraphics.cpp +++ b/src/render/safeopenglgraphics.cpp @@ -357,12 +357,13 @@ void SafeOpenGLGraphics::calcImagePattern(ImageCollection *const vert A_UNUSED, { } -void SafeOpenGLGraphics::drawTile(const ImageVertexes *const vert A_UNUSED) +void SafeOpenGLGraphics::drawTileVertexes(const ImageVertexes + *const vert A_UNUSED) { } -void SafeOpenGLGraphics::drawTile(const ImageCollection *const - vertCol A_UNUSED) +void SafeOpenGLGraphics::drawTileCollection(const ImageCollection *const + vertCol A_UNUSED) { } diff --git a/src/render/safeopenglgraphics.h b/src/render/safeopenglgraphics.h index a9f70f0c0..705e580e1 100644 --- a/src/render/safeopenglgraphics.h +++ b/src/render/safeopenglgraphics.h @@ -106,9 +106,10 @@ class SafeOpenGLGraphics final : public Graphics const int x, const int y, const int w, const int h) const override final; - void drawTile(const ImageVertexes *const vert) override final; + void drawTileVertexes(const ImageVertexes *const vert) override final; - void drawTile(const ImageCollection *const vertCol) override final; + void drawTileCollection(const ImageCollection *const vertCol) + override final; void updateScreen() override final; diff --git a/src/render/sdl2graphics.cpp b/src/render/sdl2graphics.cpp index 7169ee9eb..979de3c31 100644 --- a/src/render/sdl2graphics.cpp +++ b/src/render/sdl2graphics.cpp @@ -385,7 +385,8 @@ void SDLGraphics::calcTileCollection(ImageCollection *const vertCol, } } -void SDLGraphics::drawTile(const ImageCollection *const vertCol) +void SDLGraphics::drawTileCollection(const ImageCollection + *const vertCol) { const ImageVertexesVector &draws = vertCol->draws; const ImageCollectionCIter it_end = draws.end(); @@ -405,7 +406,7 @@ void SDLGraphics::drawTile(const ImageCollection *const vertCol) } } -void SDLGraphics::drawTile(const ImageVertexes *const vert) +void SDLGraphics::drawTileVertexes(const ImageVertexes *const vert) { // vert and img must be != 0 const Image *const img = vert->image; diff --git a/src/render/sdl2graphics.h b/src/render/sdl2graphics.h index 2a8fd7047..ed58bc400 100644 --- a/src/render/sdl2graphics.h +++ b/src/render/sdl2graphics.h @@ -106,10 +106,11 @@ class SDLGraphics : public Graphics const Image *const image, int x, int y) override final; - virtual void drawTile(const ImageVertexes *const vert) override final; + virtual void drawTileVertexes(const ImageVertexes + *const vert) override final; - virtual void drawTile(const ImageCollection *const vertCol) - override final; + virtual void drawTileCollection(const ImageCollection *const vertCol) + override final; virtual void updateScreen() override final; diff --git a/src/render/sdl2softwaregraphics.cpp b/src/render/sdl2softwaregraphics.cpp index 156f8a412..7556bc5ac 100644 --- a/src/render/sdl2softwaregraphics.cpp +++ b/src/render/sdl2softwaregraphics.cpp @@ -511,7 +511,8 @@ void SDL2SoftwareGraphics::calcTileCollection(ImageCollection *const vertCol, } } -void SDL2SoftwareGraphics::drawTile(const ImageCollection *const vertCol) +void SDL2SoftwareGraphics::drawTileCollection(const ImageCollection + *const vertCol) { const ImageVertexesVector &draws = vertCol->draws; const ImageCollectionCIter it_end = draws.end(); @@ -531,7 +532,7 @@ void SDL2SoftwareGraphics::drawTile(const ImageCollection *const vertCol) } } -void SDL2SoftwareGraphics::drawTile(const ImageVertexes *const vert) +void SDL2SoftwareGraphics::drawTileVertexes(const ImageVertexes *const vert) { // vert and img must be != 0 const Image *const img = vert->image; diff --git a/src/render/sdl2softwaregraphics.h b/src/render/sdl2softwaregraphics.h index df88dfe7b..079e1425f 100644 --- a/src/render/sdl2softwaregraphics.h +++ b/src/render/sdl2softwaregraphics.h @@ -107,10 +107,11 @@ class SDL2SoftwareGraphics : public Graphics const Image *const image, int x, int y) override final; - virtual void drawTile(const ImageVertexes *const vert) override final; + virtual void drawTileVertexes(const ImageVertexes + *const vert) override final; - virtual void drawTile(const ImageCollection *const vertCol) - override final; + virtual void drawTileCollection(const ImageCollection *const vertCol) + override final; virtual void updateScreen() override final; diff --git a/src/render/sdlgraphics.cpp b/src/render/sdlgraphics.cpp index b3d962d9f..52439f1c3 100644 --- a/src/render/sdlgraphics.cpp +++ b/src/render/sdlgraphics.cpp @@ -501,7 +501,8 @@ void SDLGraphics::calcTileCollection(ImageCollection *const vertCol, } } -void SDLGraphics::drawTile(const ImageCollection *const vertCol) +void SDLGraphics::drawTileCollection(const ImageCollection + *const vertCol) { const ImageVertexesVector &draws = vertCol->draws; const ImageCollectionCIter it_end = draws.end(); @@ -521,7 +522,7 @@ void SDLGraphics::drawTile(const ImageCollection *const vertCol) } } -void SDLGraphics::drawTile(const ImageVertexes *const vert) +void SDLGraphics::drawTileVertexes(const ImageVertexes *const vert) { // vert and img must be != 0 const Image *const img = vert->image; diff --git a/src/render/sdlgraphics.h b/src/render/sdlgraphics.h index 1ca37f8e4..5fc19d0b1 100644 --- a/src/render/sdlgraphics.h +++ b/src/render/sdlgraphics.h @@ -106,10 +106,11 @@ class SDLGraphics : public Graphics const Image *const image, int x, int y) override final; - virtual void drawTile(const ImageVertexes *const vert) override final; + virtual void drawTileVertexes(const ImageVertexes + *const vert) override final; - virtual void drawTile(const ImageCollection *const vertCol) - override final; + virtual void drawTileCollection(const ImageCollection *const vertCol) + override final; virtual void updateScreen() override final; diff --git a/src/render/surfacegraphics.h b/src/render/surfacegraphics.h index 9af2efb76..7a130dd30 100644 --- a/src/render/surfacegraphics.h +++ b/src/render/surfacegraphics.h @@ -128,11 +128,12 @@ class SurfaceGraphics : public Graphics int x A_UNUSED, int y A_UNUSED) override final { } - void drawTile(const ImageVertexes *const vert A_UNUSED) override final + void drawTileVertexes(const ImageVertexes *const + vert A_UNUSED) override final { } - void drawTile(const ImageCollection *const vertCol A_UNUSED) - override final + void drawTileCollection(const ImageCollection *const vertCol A_UNUSED) + override final { } void updateScreen() -- cgit v1.2.3-60-g2f50