diff options
Diffstat (limited to 'Source/Asura.Engine/Graphics/PNGDecoder.cpp')
-rw-r--r-- | Source/Asura.Engine/Graphics/PNGDecoder.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/Source/Asura.Engine/Graphics/PNGDecoder.cpp b/Source/Asura.Engine/Graphics/PNGDecoder.cpp deleted file mode 100644 index f919090..0000000 --- a/Source/Asura.Engine/Graphics/PNGDecoder.cpp +++ /dev/null @@ -1,19 +0,0 @@ -#include "PNGDecoder.h" - -namespace AsuraEngine -{ - namespace Graphics - { - - bool PNGDecoder::CanDecode(const Filesystem::DataBuffer& buffer) - { - return false; - } - - void PNGDecoder::Decode(const Filesystem::DataBuffer& buffer, ImageData& data) - { - - } - - } -} |