summaryrefslogtreecommitdiff
path: root/source/modules/asura-core/graphics/png_decoder.cpp
blob: 80463d59679943e38832197cf3ac345477183d13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "png_decoder.h"

namespace AsuraEngine
{
	namespace Graphics
	{

		bool PNGDecoder::CanDecode(AEIO::DataBuffer& buffer)
		{
			return false;
		}

		void PNGDecoder::Decode(AEIO::DataBuffer& buffer, ImageData& data)
		{

		}

	}
}