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

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

struct image {
	uint32_t width;
	uint32_t height;
	struct {
		uint32_t x;
		uint32_t y;
		uint32_t width;
		uint32_t height;
	} damage;
};

#endif /* IMAGE_H */