#ifndef IMAGE_H #define IMAGE_H #include #include struct image { uint8_t *buffer; uint32_t width; uint32_t height; bool swizzle; bool redraw; }; void image_load(struct image *image, const char *filename); #endif /* IMAGE_H */