blob: f9190902a1307b2134dd4855a4a7081afb971a74 (
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)
{
}
}
}
|