summaryrefslogtreecommitdiff
path: root/source/modules/asura-core/graphics/image_decoder.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/modules/asura-core/graphics/image_decoder.h')
-rw-r--r--source/modules/asura-core/graphics/image_decoder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/modules/asura-core/graphics/image_decoder.h b/source/modules/asura-core/graphics/image_decoder.h
index 263c694..869c82a 100644
--- a/source/modules/asura-core/graphics/image_decoder.h
+++ b/source/modules/asura-core/graphics/image_decoder.h
@@ -20,12 +20,12 @@ namespace AsuraEngine
///
/// жڴǷñdecoderѹ
///
- virtual bool CanDecode(const AEIO::DataBuffer& buffer) = 0;
+ virtual bool CanDecode(AEIO::DataBuffer& buffer) = 0;
///
/// һڴ棬һѹImage dataѹʧܷnullptr
///
- virtual void Decode(const AEIO::DataBuffer& buffer, ImageData& data) = 0;
+ virtual void Decode(AEIO::DataBuffer& buffer, ImageData& data) = 0;
};