mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-02 23:26:44 +00:00
IMAGE: missing override for png decoder
This commit is contained in:
parent
dfc25c83b8
commit
755931f9aa
10
image/png.h
10
image/png.h
@ -58,11 +58,11 @@ public:
|
||||
PNGDecoder();
|
||||
~PNGDecoder();
|
||||
|
||||
bool loadStream(Common::SeekableReadStream &stream);
|
||||
void destroy();
|
||||
const Graphics::Surface *getSurface() const { return _outputSurface; }
|
||||
const byte *getPalette() const { return _palette; }
|
||||
uint16 getPaletteColorCount() const { return _paletteColorCount; }
|
||||
bool loadStream(Common::SeekableReadStream &stream) override;
|
||||
void destroy() override;
|
||||
const Graphics::Surface *getSurface() const override { return _outputSurface; }
|
||||
const byte *getPalette() const override { return _palette; }
|
||||
uint16 getPaletteColorCount() const override { return _paletteColorCount; }
|
||||
int getTransparentColor() const { return _transparentColor; }
|
||||
void setSkipSignature(bool skip) { _skipSignature = skip; }
|
||||
void setKeepTransparencyPaletted(bool keep) { _keepTransparencyPaletted = keep; }
|
||||
|
Loading…
Reference in New Issue
Block a user