summaryrefslogtreecommitdiff
path: root/Source/Asura.Engine/Graphics/PNGDecoder.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Asura.Engine/Graphics/PNGDecoder.cpp')
-rw-r--r--Source/Asura.Engine/Graphics/PNGDecoder.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/Source/Asura.Engine/Graphics/PNGDecoder.cpp b/Source/Asura.Engine/Graphics/PNGDecoder.cpp
new file mode 100644
index 0000000..363d478
--- /dev/null
+++ b/Source/Asura.Engine/Graphics/PNGDecoder.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)
+ {
+
+ }
+
+ }
+}