CPixelRGB565.h
上传用户:hhs829
上传日期:2022-06-17
资源大小:586k
文件大小:0k
源码类别:

DirextX编程

开发平台:

Visual C++

  1. //
  2. // CPixelRGB565.h
  3. //
  4. #ifndef __CPixelRGB565_h__
  5. #define __CPixelRGB565_h__
  6. class CBasePixel;
  7. class CPixelRGB565 : public CBasePixel
  8. {
  9. private:
  10. unsigned char       m_Mask[2];   // Mask color
  11. public:
  12. CPixelRGB565();
  13. ~CPixelRGB565();
  14. virtual void ConvertByCover(unsigned char * inPixel); 
  15. protected:
  16. virtual void SideEffectColorChanged(void);
  17. };
  18. #endif // __CPixelRGB565_h__