8bpp_debug.hpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00012 #ifndef BLITTER_8BPP_DEBUG_HPP
00013 #define BLITTER_8BPP_DEBUG_HPP
00014
00015 #include "8bpp_base.hpp"
00016 #include "factory.hpp"
00017
00018 class Blitter_8bppDebug : public Blitter_8bppBase {
00019 public:
00020 void Draw(Blitter::BlitterParams *bp, BlitterMode mode, ZoomLevel zoom);
00021 Sprite *Encode(SpriteLoader::Sprite *sprite, Blitter::AllocatorProc *allocator);
00022
00023 const char *GetName() { return "8bpp-debug"; }
00024 };
00025
00026 class FBlitter_8bppDebug: public BlitterFactory<FBlitter_8bppDebug> {
00027 public:
00028 const char *GetName() { return "8bpp-debug"; }
00029 const char *GetDescription() { return "8bpp Debug Blitter (testing only)"; }
00030 Blitter *CreateInstance() { return new Blitter_8bppDebug(); }
00031 };
00032
00033 #endif