PNGReader.h 182 B

12345678910
  1. #ifndef PNGREADER_H
  2. #define PNGREADER_H
  3. #include "common/utils/Types.h"
  4. namespace PNGReader {
  5. bool load(const char* path, u32* buffer, u32& maxWidth, u32& maxHeight);
  6. }
  7. #endif