summaryrefslogtreecommitdiff
path: root/Source/Asura.Engine/Graphics/PNGDecoder.cpp
blob: 363d47851a5c7c05f5269a37dc07a3a24d3740b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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)
		{

		}

	}
}