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/png_decoder.cpp | |
parent | c270d033fa04873ee7a8925dbb00cae5edc4555c (diff) |
*misc
Diffstat (limited to 'source/modules/asura-core/graphics/png_decoder.cpp')
-rw-r--r-- | source/modules/asura-core/graphics/png_decoder.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/modules/asura-core/graphics/png_decoder.cpp b/source/modules/asura-core/graphics/png_decoder.cpp index f919090..80463d5 100644 --- a/source/modules/asura-core/graphics/png_decoder.cpp +++ b/source/modules/asura-core/graphics/png_decoder.cpp @@ -1,16 +1,16 @@ -#include "PNGDecoder.h" +#include "png_decoder.h" namespace AsuraEngine { namespace Graphics { - bool PNGDecoder::CanDecode(const Filesystem::DataBuffer& buffer) + bool PNGDecoder::CanDecode(AEIO::DataBuffer& buffer) { return false; } - void PNGDecoder::Decode(const Filesystem::DataBuffer& buffer, ImageData& data) + void PNGDecoder::Decode(AEIO::DataBuffer& buffer, ImageData& data) { } |