diff options
Diffstat (limited to 'source/modules/asura-core/Image/ImageDecoder.h')
-rw-r--r-- | source/modules/asura-core/Image/ImageDecoder.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/modules/asura-core/Image/ImageDecoder.h b/source/modules/asura-core/Image/ImageDecoder.h index 7de92d6..6cea8fd 100644 --- a/source/modules/asura-core/Image/ImageDecoder.h +++ b/source/modules/asura-core/Image/ImageDecoder.h @@ -1,7 +1,7 @@ #ifndef _ASURA_ENGINE_IMAGE_DECODER_H_ #define _ASURA_ENGINE_IMAGE_DECODER_H_ -#include <asura-utils/IO/DataBuffer.h> +#include <asura-base/FileSystem/DataBuffer.h> #include "ImageData.h" @@ -18,12 +18,12 @@ public: /// /// жڴǷñdecoderѹ /// - virtual bool CanDecode(AEIO::DataBuffer& input) = 0; + virtual bool CanDecode(AEFileSystem::DataBuffer& input) = 0; /// /// һڴ棬һѹImage dataѹʧܷnullptr /// - virtual void Decode(AEIO::DataBuffer& input, ImageData& target) = 0; + virtual void Decode(AEFileSystem::DataBuffer& input, ImageData& target) = 0; }; |