summaryrefslogtreecommitdiff
path: root/source/libs/asura-lib-core/graphics/png_decoder.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/libs/asura-lib-core/graphics/png_decoder.cpp')
-rw-r--r--source/libs/asura-lib-core/graphics/png_decoder.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/source/libs/asura-lib-core/graphics/png_decoder.cpp b/source/libs/asura-lib-core/graphics/png_decoder.cpp
new file mode 100644
index 0000000..f919090
--- /dev/null
+++ b/source/libs/asura-lib-core/graphics/png_decoder.cpp
@@ -0,0 +1,19 @@
+#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)
+ {
+
+ }
+
+ }
+}