1
0
Fork 0

Adding source/Graphics/Image/IcoFormat

This commit is contained in:
Henrik Hautakoski 2020-10-22 17:07:42 +02:00
parent b78531a570
commit 37d495fca3
3 changed files with 96 additions and 0 deletions

View file

@ -0,0 +1,19 @@
#ifndef SPECTRE_GRAPHICS_IMAGE_ICOFORMAT_H
#define SPECTRE_GRAPHICS_IMAGE_ICOFORMAT_H
#include <Spectre/Graphics/Image.h>
namespace sp {
namespace image {
class IcoFormat
{
public :
bool decode(Image& img, const unsigned char *data, unsigned size);
};
}} // namespace sp::image
#endif /* SPECTRE_GRAPHICS_IMAGE_ICOFORMAT_H */