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.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Asura.Engine/Graphics/PNGDecoder.cpp b/Source/Asura.Engine/Graphics/PNGDecoder.cpp
index 363d478..f919090 100644
--- a/Source/Asura.Engine/Graphics/PNGDecoder.cpp
+++ b/Source/Asura.Engine/Graphics/PNGDecoder.cpp
@@ -5,12 +5,12 @@ namespace AsuraEngine
namespace Graphics
{
- bool PNGDecoder::CanDecode(const Filesystem::DataBuffer* buffer)
+ bool PNGDecoder::CanDecode(const Filesystem::DataBuffer& buffer)
{
return false;
}
- void PNGDecoder::Decode(const Filesystem::DataBuffer* buffer, ImageData* data)
+ void PNGDecoder::Decode(const Filesystem::DataBuffer& buffer, ImageData& data)
{
}