summaryrefslogtreecommitdiff
path: root/source/modules/asura-core/image/png_decoder.cpp
blob: a76af80df88b73a12bf1b24d306e67e197e449fd (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 Image
	{

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

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

		}

	}
}