summaryrefslogtreecommitdiff
path: root/src/image.h
blob: d5bd346282cf3785dcf809dbdb07d74688551628 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef IMAGE_H
#define IMAGE_H

#include <stdbool.h>
#include <stdint.h>

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 */