diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-17 20:03:14 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-17 20:03:14 +0300 |
commit | 55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d (patch) | |
tree | b1108bef76eed589fcb0028c4bd97f14510e940f /src/render/imagegraphics.h | |
parent | 72b9b0b8b7f3e0b60bf7a926b44aaa589dd131e8 (diff) | |
download | mv-55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d.tar.gz mv-55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d.tar.bz2 mv-55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d.tar.xz mv-55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d.zip |
Remove override keyword, if it present with final.
Diffstat (limited to 'src/render/imagegraphics.h')
-rw-r--r-- | src/render/imagegraphics.h | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/src/render/imagegraphics.h b/src/render/imagegraphics.h index 8d4a72368..bc0eafa04 100644 --- a/src/render/imagegraphics.h +++ b/src/render/imagegraphics.h @@ -51,31 +51,31 @@ class ImegeGraphics final : public Graphics Image *getTarget() const restrict2 noexcept { return mTarget; } - void beginDraw() restrict2 override final + void beginDraw() restrict2 final { } - void endDraw() restrict2 override final + void endDraw() restrict2 final { } void pushClipArea(const Rect &restrict rect A_UNUSED) - restrict2 override final + restrict2 final { } - void popClipArea() restrict2 override final + void popClipArea() restrict2 final { } void drawRescaledImage(const Image *restrict const image A_UNUSED, int dstX A_UNUSED, int dstY A_UNUSED, const int desiredWidth A_UNUSED, const int desiredHeight A_UNUSED) - restrict2 override final + restrict2 final { } void drawPattern(const Image *restrict const image A_UNUSED, const int x A_UNUSED, const int y A_UNUSED, const int w A_UNUSED, - const int h A_UNUSED) restrict2 override final + const int h A_UNUSED) restrict2 final { } void drawRescaledPattern(const Image *const image A_UNUSED, @@ -85,7 +85,7 @@ class ImegeGraphics final : public Graphics const int h A_UNUSED, const int scaledWidth A_UNUSED, const int scaledHeight A_UNUSED) - override final + final { } void calcPattern(ImageVertexes *restrict const vert A_UNUSED, @@ -93,7 +93,7 @@ class ImegeGraphics final : public Graphics const int x A_UNUSED, const int y A_UNUSED, const int w A_UNUSED, - const int h A_UNUSED) const restrict2 override final + const int h A_UNUSED) const restrict2 final { } void calcPattern(ImageCollection *restrict const vert A_UNUSED, @@ -101,37 +101,37 @@ class ImegeGraphics final : public Graphics const int x A_UNUSED, const int y A_UNUSED, const int w A_UNUSED, - const int h A_UNUSED) const restrict2 override final + const int h A_UNUSED) const restrict2 final { } void calcTileVertexes(ImageVertexes *restrict const vert A_UNUSED, const Image *restrict const image A_UNUSED, int x A_UNUSED, - int y A_UNUSED) const restrict2 override final + int y A_UNUSED) const restrict2 final A_NONNULL(2, 3) { } void calcTileSDL(ImageVertexes *restrict const vert A_UNUSED, int x A_UNUSED, - int y A_UNUSED) const restrict2 override final + int y A_UNUSED) const restrict2 final { } void calcTileCollection(ImageCollection *restrict const vertCol A_UNUSED, const Image *restrict const image A_UNUSED, int x A_UNUSED, - int y A_UNUSED) restrict2 override final + int y A_UNUSED) restrict2 final { } void drawTileVertexes(const ImageVertexes *const - vert A_UNUSED) override final + vert A_UNUSED) final { } void drawTileCollection(const ImageCollection *const vertCol A_UNUSED) - override final A_NONNULL(2) + final A_NONNULL(2) { } - void updateScreen() override final + void updateScreen() final { } void drawNet(const int x1 A_UNUSED, @@ -139,28 +139,28 @@ class ImegeGraphics final : public Graphics const int x2 A_UNUSED, const int y2 A_UNUSED, const int width A_UNUSED, - const int height A_UNUSED) override final + const int height A_UNUSED) final { } void calcWindow(ImageCollection *restrict const vertCol A_UNUSED, const int x A_UNUSED, const int y A_UNUSED, const int w A_UNUSED, const int h A_UNUSED, const ImageRect &restrict imgRect A_UNUSED) - restrict2 override final A_NONNULL(2) + restrict2 final A_NONNULL(2) { } - void fillRectangle(const Rect &rect A_UNUSED) override final + void fillRectangle(const Rect &rect A_UNUSED) final { } - void drawRectangle(const Rect &rect A_UNUSED) restrict2 override final + void drawRectangle(const Rect &rect A_UNUSED) restrict2 final { } - void drawPoint(int x A_UNUSED, int y A_UNUSED) override final + void drawPoint(int x A_UNUSED, int y A_UNUSED) final { } void drawLine(int x1 A_UNUSED, int y1 A_UNUSED, int x2 A_UNUSED, int y2 A_UNUSED) - restrict2 override final + restrict2 final { } bool setVideoMode(const int w A_UNUSED, const int h A_UNUSED, @@ -168,26 +168,26 @@ class ImegeGraphics final : public Graphics const int bpp A_UNUSED, const bool fs A_UNUSED, const bool hwaccel A_UNUSED, const bool resize A_UNUSED, - const bool noFrame A_UNUSED) restrict2 override final + const bool noFrame A_UNUSED) restrict2 final { return false; } void drawImage(const Image *const image, - int dstX, int dstY) override final; + int dstX, int dstY) final; void copyImage(const Image *const image, - int dstX, int dstY) restrict2 override final; + int dstX, int dstY) restrict2 final; void drawImageCached(const Image *const image, - int x, int y) override final; + int x, int y) final; void drawPatternCached(const Image *restrict const image A_UNUSED, const int x A_UNUSED, const int y A_UNUSED, const int w A_UNUSED, - const int h A_UNUSED) restrict2 override final + const int h A_UNUSED) restrict2 final { } - void completeCache() restrict2 override final; + void completeCache() restrict2 final; /** * Draws a rectangle using images. 4 corner images, 4 side images and 1 @@ -195,7 +195,7 @@ class ImegeGraphics final : public Graphics */ void drawImageRect(const int x A_UNUSED, const int y A_UNUSED, const int w A_UNUSED, const int h A_UNUSED, - const ImageRect &imgRect A_UNUSED) override final + const ImageRect &imgRect A_UNUSED) final { } protected: |