diff options
author | chai <chaifix@163.com> | 2019-03-30 21:49:29 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2019-03-30 21:49:29 +0800 |
commit | 8164adb15b76f537f8b6c78b9992786b61d61cc8 (patch) | |
tree | 6e42919e32258a3c495dcec54b0fda3e8e1977d8 /source/modules/asura-core/graphics/image_decoder.h | |
parent | c270d033fa04873ee7a8925dbb00cae5edc4555c (diff) |
*misc
Diffstat (limited to 'source/modules/asura-core/graphics/image_decoder.h')
-rw-r--r-- | source/modules/asura-core/graphics/image_decoder.h | 4 |
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; }; |