Decoder for BRC images.
Classes | |
class | Image::BRCDecoder |
Functions | |
void | Image::BRCDecoder::destroy () override |
bool | Image::BRCDecoder::loadStream (Common::SeekableReadStream &stream) override |
const Graphics::Surface * | Image::BRCDecoder::getSurface () const override |
const Graphics::Palette & | Image::BRCDecoder::getPalette () const override |
|
overridevirtual |
Destroy this decoder's surface and palette.
This should be called by a loadStream() implementation as well as by the destructor.
Implements Image::ImageDecoder.
|
overridevirtual |
Load an image from the specified stream.
loadStream() should implicitly call destroy() to free the memory of the last loadStream() call.
stream | Input stream. |
Implements Image::ImageDecoder.
|
inlineoverridevirtual |
Get the decoded surface.
This surface is owned by this ImageDecoder and remains valid until destroy() or loadStream() is called, or until the destructor of this ImageDecoder is called.
Implements Image::ImageDecoder.
|
inlineoverridevirtual |
Get the decoded palette.
This palette is owned by this ImageDecoder and remains valid until destroy() or loadStream() is called, or until the destructor of this ImageDecoder is called.
Implements Image::ImageDecoder.