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

DirextX编程

开发平台:

Visual C++

  1. //
  2. // CPixelRGB8.h
  3. //
  4. #ifndef __CPixelRGB8_h__
  5. #define __CPixelRGB8_h__
  6. class CBasePixel;
  7. class CPixelRGB8 : public CBasePixel
  8. {
  9. private:
  10. const int        m_nPaletteEntry;
  11. // PALETTEENTRY     m_Palette[256]; // The optimal palette for the image
  12. public:
  13. CPixelRGB8();
  14. ~CPixelRGB8();
  15. virtual void ConvertByCover(unsigned char * inPixel); 
  16. protected:
  17. virtual void SideEffectColorChanged(void);
  18. bool SetPaletteEntries(void);
  19. };
  20. #endif // __CPixelRGB8_h__