Fix save_png definition / New UISprite function

This commit is contained in:
Sam
2014-01-20 22:48:50 +01:00
parent a2684cce7c
commit 455000c02d
3 changed files with 4 additions and 1 deletions

View File

@@ -40,7 +40,7 @@ struct apng_data {
// returns -1 on error, 0 on success
int load_apng(std::stringstream& file, struct apng_data *apng);
void save_png(std::stringstream& file, int width, int height, int channels, unsigned char *pixels);
void save_png(std::stringstream& file, unsigned int width, unsigned int height, int channels, unsigned char *pixels);
void free_apng(struct apng_data *apng);
#endif