mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2025-01-23 21:51:08 +00:00
19 lines
349 B
C++
19 lines
349 B
C++
#ifndef _IMAGE_LOADER_PNG_H_
|
|
#define _IMAGE_LOADER_PNG_H_
|
|
|
|
#include "ImageLoader.h"
|
|
|
|
class ImageLoaderPNG : public ImageLoader {
|
|
public:
|
|
ImageLoaderPNG(const unsigned char *rawData);
|
|
virtual ~ImageLoaderPNG();
|
|
|
|
virtual bool ReadData();
|
|
|
|
private:
|
|
unsigned int m_StreamPosition;
|
|
friend class PNGStreamReader;
|
|
};
|
|
|
|
#endif // _IMAGE_LOADER_H_
|