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

DirextX编程

开发平台:

Visual C++

  1. //
  2. // CPixelRGB24.cpp
  3. //
  4. #include "CBasePixel.h"
  5. #include "CPixelRGB24.h"
  6. //////////////////////////////////////////////////////////////////////
  7. CPixelRGB24::CPixelRGB24()
  8. {
  9. }
  10. CPixelRGB24::~CPixelRGB24()
  11. {
  12. }
  13. void CPixelRGB24::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. }
  23. }