diff options
author | chai <chaifix@163.com> | 2019-03-28 08:56:15 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2019-03-28 08:56:15 +0800 |
commit | 3bced067a4144381e59ce4bd0eb749eeff5ad1f4 (patch) | |
tree | 0352c8ae263dae904967f9e21326ce2a4ca9ada8 /source/libs/asura-lib-core/graphics/image_data.cpp | |
parent | f6bcacef6e10200b1c0dc34c4aa34313cbfc0392 (diff) |
*misc
Diffstat (limited to 'source/libs/asura-lib-core/graphics/image_data.cpp')
-rw-r--r-- | source/libs/asura-lib-core/graphics/image_data.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/libs/asura-lib-core/graphics/image_data.cpp b/source/libs/asura-lib-core/graphics/image_data.cpp index 28c706a..b79dfab 100644 --- a/source/libs/asura-lib-core/graphics/image_data.cpp +++ b/source/libs/asura-lib-core/graphics/image_data.cpp @@ -16,7 +16,7 @@ namespace AsuraEngine new STBDecoder() // jpeg, tga, bmp }; - ImageData::ImageData(const Filesystem::DataBuffer& buffer) + ImageData::ImageData(const IO::DataBuffer& buffer) : DecodedData(buffer) { } @@ -30,7 +30,7 @@ namespace AsuraEngine /// /// ɹ׳쳣 /// - void ImageData::Decode(const Filesystem::DataBuffer& buffer) + void ImageData::Decode(const IO::DataBuffer& buffer) { for (ImageDecoder* decoder : ImageDecoders) { |