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

DirextX编程

开发平台:

Visual C++

  1. //
  2. // CPixelRGB32.h
  3. //
  4. #ifndef __CPixelRGB32_h__
  5. #define __CPixelRGB32_h__
  6. /*
  7. RGB32 format: BGR-BGR-
  8. */
  9. class CBasePixel;
  10. class CPixelRGB32 : public CBasePixel
  11. {
  12. public:
  13. CPixelRGB32();
  14. ~CPixelRGB32();
  15. virtual void ConvertByCover(unsigned char * inPixel); 
  16. };
  17. #endif // __CPixelRGB32_h__