File diff r21027:e87e97e6befd → r21028:e5db3f83cafa
src/blitter/32bpp_simple.hpp
Show inline comments
 
@@ -31,13 +31,13 @@ public:
 
	/* virtual */ Sprite *Encode(const SpriteLoader::Sprite *sprite, AllocatorProc *allocator);
 

	
 
	/* virtual */ const char *GetName() { return "32bpp-simple"; }
 
};
 

	
 
/** Factory for the simple 32 bpp blitter. */
 
class FBlitter_32bppSimple: public BlitterFactory<FBlitter_32bppSimple> {
 
class FBlitter_32bppSimple : public BlitterFactory<FBlitter_32bppSimple> {
 
public:
 
	/* virtual */ const char *GetName() { return "32bpp-simple"; }
 
	/* virtual */ const char *GetDescription() { return "32bpp Simple Blitter (no palette animation)"; }
 
	/* virtual */ Blitter *CreateInstance() { return new Blitter_32bppSimple(); }
 
};