diff options
Diffstat (limited to 'src/image.h')
-rw-r--r-- | src/image.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/image.h b/src/image.h index d5bd346..21b9100 100644 --- a/src/image.h +++ b/src/image.h @@ -10,6 +10,12 @@ struct image { uint32_t height; bool swizzle; bool redraw; + struct { + uint32_t x; + uint32_t y; + uint32_t width; + uint32_t height; + } damage; }; void image_load(struct image *image, const char *filename); |