diff options
Diffstat (limited to 'indra/llimage/llimagepng.h')
-rw-r--r-- | indra/llimage/llimagepng.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/indra/llimage/llimagepng.h b/indra/llimage/llimagepng.h index 027caf9780..38af80f2dd 100644 --- a/indra/llimage/llimagepng.h +++ b/indra/llimage/llimagepng.h @@ -42,9 +42,10 @@ protected: public: LLImagePNG(); - BOOL updateData(); - BOOL decode(LLImageRaw* raw_image, F32 decode_time); - BOOL encode(const LLImageRaw* raw_image, F32 encode_time); + /*virtual*/ std::string getExtension() { return std::string("png"); } + /*virtual*/ BOOL updateData(); + /*virtual*/ BOOL decode(LLImageRaw* raw_image, F32 decode_time); + /*virtual*/ BOOL encode(const LLImageRaw* raw_image, F32 encode_time); private: U8* mTmpWriteBuffer; |