(svn r10245) -Codechange: added GetName also to all Blitters, instead of only the Factory

This commit is contained in:
truelight
2007-06-21 13:56:59 +00:00
parent e8f9332af9
commit 06fded123a
7 changed files with 17 additions and 0 deletions

View File

@@ -13,6 +13,8 @@ public:
/* virtual */ void Draw(Blitter::BlitterParams *bp, BlitterMode mode, ZoomLevel zoom);
/* virtual */ void DrawColorMappingRect(void *dst, int width, int height, int pal);
/* virtual */ Sprite *Encode(SpriteLoader::Sprite *sprite, Blitter::AllocatorProc *allocator);
/* virtual */ const char *GetName() { return "32bpp-simple"; }
};
class FBlitter_32bppSimple: public BlitterFactory<FBlitter_32bppSimple> {