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