summaryrefslogtreecommitdiff
path: root/src/blitter/8bpp_debug.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/blitter/8bpp_debug.hpp')
-rw-r--r--src/blitter/8bpp_debug.hpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/blitter/8bpp_debug.hpp b/src/blitter/8bpp_debug.hpp
new file mode 100644
index 000000000..67b12b652
--- /dev/null
+++ b/src/blitter/8bpp_debug.hpp
@@ -0,0 +1,30 @@
+/* $Id$ */
+
+/** @file debug.hpp */
+
+#ifndef BLITTER_8BPP_DEBUG_HPP
+#define BLITTER_8BPP_DEBUG_HPP
+
+#include "blitter.hpp"
+
+typedef Pixel Pixel8;
+
+class Blitter_8bppDebug : public Blitter {
+public:
+ uint8 GetScreenDepth() { return 8; }
+
+ void Draw(Blitter::BlitterParams *bp, BlitterMode mode, ZoomLevel zoom);
+
+ Sprite *Encode(SpriteLoader::Sprite *sprite);
+};
+
+class FBlitter_8bppDebug: public BlitterFactory<FBlitter_8bppDebug> {
+public:
+ /* virtual */ const char *GetName() { return "8bpp-debug"; }
+
+ /* virtual */ const char *GetDescription() { return "8bpp Debug Blitter (testing only)"; }
+
+ /* virtual */ Blitter *CreateInstance() { return new Blitter_8bppDebug(); }
+};
+
+#endif /* BLITTER_8BPP_DEBUG_HPP */