blob: b31456125b39aa9b372cadae62095352803862f1 (
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(AEFileSystem::DataBuffer& buffer)
{
return false;
}
void PNGDecoder::Decode(AEFileSystem::DataBuffer& buffer, ImageData& data)
{
}
namespace_end
namespace_end
|