- //
- // CPixelRGB555.h
- //
- #ifndef __CPixelRGB555_h__
- #define __CPixelRGB555_h__
- class CBasePixel;
- class CPixelRGB555 : public CBasePixel
- {
- private:
- unsigned char m_Mask[2]; // Mask color
- public:
- CPixelRGB555();
- ~CPixelRGB555();
- virtual void ConvertByCover(unsigned char * inPixel);
- protected:
- virtual void SideEffectColorChanged(void);
- };
- #endif // __CPixelRGB555_h__