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

DirextX编程

开发平台:

Visual C++

  1. //
  2. // CPixelRGB32.cpp
  3. //
  4. #include "CBasePixel.h"
  5. #include "CPixelRGB32.h"
  6. //////////////////////////////////////////////////////////////////////
  7. CPixelRGB32::CPixelRGB32()
  8. {
  9. }
  10. CPixelRGB32::~CPixelRGB32()
  11. {
  12. }
  13. void CPixelRGB32::ConvertByCover(unsigned char * inPixel)
  14. {
  15. if (inPixel)
  16. {
  17. *inPixel = m_TargetB;
  18. inPixel++;
  19. *inPixel = m_TargetG;
  20. inPixel++;
  21. *inPixel = m_TargetR;
  22. inPixel++;
  23. *inPixel = 0;
  24. }
  25. }