summaryrefslogtreecommitdiff
path: root/source/libs/asura-lib-core/graphics/image_decoder.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/libs/asura-lib-core/graphics/image_decoder.h')
-rw-r--r--source/libs/asura-lib-core/graphics/image_decoder.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/libs/asura-lib-core/graphics/image_decoder.h b/source/libs/asura-lib-core/graphics/image_decoder.h
index 921d129..6f2049a 100644
--- a/source/libs/asura-lib-core/graphics/image_decoder.h
+++ b/source/libs/asura-lib-core/graphics/image_decoder.h
@@ -1,7 +1,7 @@
#ifndef __ASURA_ENGINE_IMAGE_DECODER_H__
#define __ASURA_ENGINE_IMAGE_DECODER_H__
-#include <asura-lib-utils/filesystem/data_buffer.h>
+#include <asura-lib-utils/io/data_buffer.h>
#include "image_data.h"
@@ -20,12 +20,12 @@ namespace AsuraEngine
///
/// жڴǷñdecoderѹ
///
- virtual bool CanDecode(const Filesystem::DataBuffer& buffer) = 0;
+ virtual bool CanDecode(const AEIO::DataBuffer& buffer) = 0;
///
/// һڴ棬һѹImage dataѹʧܷnullptr
///
- virtual void Decode(const Filesystem::DataBuffer& buffer, ImageData& data) = 0;
+ virtual void Decode(const AEIO::DataBuffer& buffer, ImageData& data) = 0;
};