![]() |
OGRE
13.4
Object-Oriented Graphics Rendering Engine
|
#include <OgreSTBICodec.h>
Inheritance diagram for Ogre::STBIImageCodec:Public Member Functions | |
| STBIImageCodec (const String &type) | |
| virtual | ~STBIImageCodec () |
| DecodeResult | decode (const DataStreamPtr &input) const override |
| DataStreamPtr | encode (const MemoryDataStreamPtr &input, const CodecDataPtr &pData) const override |
| void | encodeToFile (const MemoryDataStreamPtr &input, const String &outFileName, const CodecDataPtr &pData) const override |
| String | getType () const override |
| Returns the type of the codec as a String. More... | |
| String | magicNumberToFileExt (const char *magicNumberPtr, size_t maxbytes) const override |
| Maps a magic number header to a file extension, if this codec recognises it. More... | |
Public Member Functions inherited from Ogre::ImageCodec | |
| virtual | ~ImageCodec () |
| void | decode (const DataStreamPtr &input, const Any &output) const override |
| Codes the data from the input chunk into the output chunk. More... | |
| DataStreamPtr | encode (const Any &input) const override |
| Codes the input and saves the result in the output stream. More... | |
| void | encodeToFile (const Any &input, const String &outFileName) const override |
| Codes the data in the input chunk and saves the result in the output filename provided. More... | |
Public Member Functions inherited from Ogre::Codec | |
| virtual | ~Codec () |
| bool | magicNumberMatch (const char *magicNumberPtr, size_t maxbytes) const |
| Returns whether a magic number header matches this codec. More... | |
Static Public Member Functions | |
| static _OgreSTBICodecExport void | shutdown (void) |
| Static method to shutdown and unregister the codecs. More... | |
| static _OgreSTBICodecExport void | startup (void) |
| Static method to startup and register the codecs. More... | |
Static Public Member Functions inherited from Ogre::Codec | |
| static Codec * | getCodec (const String &extension) |
| Gets the codec registered for the passed in file extension. More... | |
| static Codec * | getCodec (char *magicNumberPtr, size_t maxbytes) |
| Gets the codec that can handle the given 'magic' identifier. More... | |
| static StringVector | getExtensions (void) |
| Gets the file extension list for the registered codecs. More... | |
| static bool | isCodecRegistered (const String &codecType) |
| Return whether a codec is registered already. More... | |
| static void | registerCodec (Codec *pCodec) |
| Registers a new codec in the database. More... | |
| static void | unregisterCodec (Codec *pCodec) |
| Unregisters a codec from the database. More... | |
Additional Inherited Members | |
Public Types inherited from Ogre::ImageCodec | |
| typedef SharedPtr< ImageData > | CodecDataPtr |
| typedef std::pair< MemoryDataStreamPtr, CodecDataPtr > | DecodeResult |
| Result of a decoding; both a decoded data stream and CodecData metadata. More... | |
| Ogre::STBIImageCodec::STBIImageCodec | ( | const String & | type | ) |
|
inlinevirtual |
|
overridevirtual |
|
overridevirtual |
|
overridevirtual |
|
overridevirtual |
|
overridevirtual |
Maps a magic number header to a file extension, if this codec recognises it.
| magicNumberPtr | Pointer to a stream of bytes which should identify the file. Note that this may be more than needed - each codec may be looking for a different size magic number. |
| maxbytes | The number of bytes passed |
Implements Ogre::Codec.
Referenced by ~STBIImageCodec().
|
static |
Static method to startup and register the codecs.
Referenced by Ogre::STBIPlugin::install(), and ~STBIImageCodec().
|
static |
Static method to shutdown and unregister the codecs.
Referenced by Ogre::STBIPlugin::uninstall(), and ~STBIImageCodec().