diff options
Diffstat (limited to 'src/sdlgraphics.h')
-rw-r--r-- | src/sdlgraphics.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/sdlgraphics.h b/src/sdlgraphics.h index b0a076b26..db2ad93a0 100644 --- a/src/sdlgraphics.h +++ b/src/sdlgraphics.h @@ -45,12 +45,6 @@ struct SDL_Surface; class SDLGraphics : public Graphics { public: - enum BlitMode - { - BLIT_NORMAL = 0, - BLIT_GFX - }; - /** * Constructor. */ @@ -125,12 +119,6 @@ class SDLGraphics : public Graphics const int w, const int h, const ImageRect &imgRect); - void setBlitMode(const BlitMode mode) - { mBlitMode = mode; } - - BlitMode getBlitMode() const A_WARN_UNUSED - { return mBlitMode; } - void fillRectangle(const gcn::Rectangle &rect) override; void drawRectangle(const gcn::Rectangle &rect) override; @@ -159,7 +147,6 @@ class SDLGraphics : public Graphics void drawVLine(int x, int y1, int y2); - BlitMode mBlitMode; uint32_t mOldPixel; int mOldAlpha; }; |