diff options
Diffstat (limited to 'source/modules/asura-core/image/png_decoder.cpp')
-rw-r--r-- | source/modules/asura-core/image/png_decoder.cpp | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/source/modules/asura-core/image/png_decoder.cpp b/source/modules/asura-core/image/png_decoder.cpp index a76af80..bf33959 100644 --- a/source/modules/asura-core/image/png_decoder.cpp +++ b/source/modules/asura-core/image/png_decoder.cpp @@ -1,19 +1,17 @@ #include "png_decoder.h" -namespace AsuraEngine -{ - namespace Image - { - - bool PNGDecoder::CanDecode(AEIO::DataBuffer& buffer) - { - return false; - } +namespace_begin(AsuraEngine) +namespace_begin(Image) - void PNGDecoder::Decode(AEIO::DataBuffer& buffer, ImageData& data) - { +bool PNGDecoder::CanDecode(AEIO::DataBuffer& buffer) +{ + return false; +} - } +void PNGDecoder::Decode(AEIO::DataBuffer& buffer, ImageData& data) +{ - } } + +namespace_end +namespace_end |