summaryrefslogtreecommitdiff
path: root/source/modules/asura-core/image/png_decoder.cpp
blob: bf33959931a24bb5ff4be712e66ef239087e0460 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "png_decoder.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