2015-01-24 02:37:10 +00:00
|
|
|
#ifndef __UTIL_H__
|
|
|
|
#define __UTIL_H__
|
|
|
|
|
2015-01-24 06:46:15 +00:00
|
|
|
#include "../types.h"
|
2015-01-24 02:37:10 +00:00
|
|
|
|
2015-01-25 18:32:01 +00:00
|
|
|
typedef enum {
|
|
|
|
RGB565,
|
|
|
|
RGBA4444
|
|
|
|
} PixelFormat;
|
|
|
|
|
2015-01-26 02:24:32 +00:00
|
|
|
void utf8_to_utf16(u16* dst, const char* src, size_t max_len);
|
2015-01-25 18:32:01 +00:00
|
|
|
u16 pack_color(u8 r, u8 g, u8 b, u8 a, PixelFormat format);
|
|
|
|
u16* image_to_tiles(const char* image, u32 width, u32 height, PixelFormat format, u32* size);
|
2015-01-24 02:37:10 +00:00
|
|
|
|
|
|
|
#endif
|