summaryrefslogtreecommitdiff
path: root/src/sdl2graphics.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sdl2graphics.h')
-rw-r--r--src/sdl2graphics.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/sdl2graphics.h b/src/sdl2graphics.h
index 583be5e8a..35659161d 100644
--- a/src/sdl2graphics.h
+++ b/src/sdl2graphics.h
@@ -42,12 +42,6 @@ struct SDL_Surface;
class SDLGraphics : public Graphics
{
public:
- enum BlitMode
- {
- BLIT_NORMAL = 0,
- BLIT_GFX
- };
-
/**
* Constructor.
*/
@@ -122,12 +116,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;
@@ -156,7 +144,6 @@ class SDLGraphics : public Graphics
void drawVLine(int x, int y1, int y2);
- BlitMode mBlitMode;
uint32_t mOldPixel;
int mOldAlpha;
};