CmBitmapWriter.h 339 B

12345678910111213
  1. #pragma once
  2. #include "CmPrerequisitesUtil.h"
  3. namespace CamelotFramework
  4. {
  5. class CM_UTILITY_EXPORT BitmapWriter
  6. {
  7. public:
  8. static void rawPixelsToBMP(const UINT8* input, UINT8* output, UINT32 width, UINT32 height, UINT32 bytesPerPixel);
  9. static UINT32 getBMPSize(UINT32 width, UINT32 height, UINT32 bytesPerPixel);
  10. };
  11. }