summaryrefslogtreecommitdiff
path: root/source/modules/asura-core/Image/PngDecoder.cpp
blob: 618c16e87f726b31b5eb16c8078a8c1b64fc79b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "PngDecoder.h"

namespace_begin(AsuraEngine)
namespace_begin(Image)

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

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

}

namespace_end
namespace_end