summaryrefslogtreecommitdiff
path: root/source/modules/asura-core/graphics/png_decoder.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/modules/asura-core/graphics/png_decoder.cpp')
-rw-r--r--source/modules/asura-core/graphics/png_decoder.cpp6
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)
{
}