diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-28 13:27:26 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-28 13:27:26 +0300 |
commit | 8f018529676006ed744138a929fcc621694d6d75 (patch) | |
tree | 03ef706a48100c1bb42a4611add5601844d2cbf5 /src/render/sdlgraphics.h | |
parent | ad43ff0ddf9b0484e00db7b7f0930bad975bf21a (diff) | |
download | plus-8f018529676006ed744138a929fcc621694d6d75.tar.gz plus-8f018529676006ed744138a929fcc621694d6d75.tar.bz2 plus-8f018529676006ed744138a929fcc621694d6d75.tar.xz plus-8f018529676006ed744138a929fcc621694d6d75.zip |
In renderers replace ImagePattern in methods into Pattern.
Diffstat (limited to 'src/render/sdlgraphics.h')
-rw-r--r-- | src/render/sdlgraphics.h | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/src/render/sdlgraphics.h b/src/render/sdlgraphics.h index fcb624b12..b88a47dc4 100644 --- a/src/render/sdlgraphics.h +++ b/src/render/sdlgraphics.h @@ -69,25 +69,25 @@ class SDLGraphics final : public Graphics const int desiredHeight, const bool useColor = false) override final; - void drawImagePattern(const Image *const image, - const int x, const int y, - const int w, const int h) override final; - - void drawRescaledImagePattern(const Image *const image, - const int x, const int y, - const int w, const int h, - const int scaledWidth, - const int scaledHeight) override final; - - void calcImagePattern(ImageVertexes *const vert, - const Image *const image, - const int x, const int y, - const int w, const int h) const override final; - - void calcImagePattern(ImageCollection *const vert, - const Image *const image, - const int x, const int y, - const int w, const int h) const override final; + void drawPattern(const Image *const image, + const int x, const int y, + const int w, const int h) override final; + + void drawRescaledPattern(const Image *const image, + const int x, const int y, + const int w, const int h, + const int scaledWidth, + const int scaledHeight) override final; + + void calcPattern(ImageVertexes *const vert, + const Image *const image, + const int x, const int y, + const int w, const int h) const override final; + + void calcPattern(ImageCollection *const vert, + const Image *const image, + const int x, const int y, + const int w, const int h) const override final; void calcTileVertexes(ImageVertexes *const vert, const Image *const image, |