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