aboutsummaryrefslogtreecommitdiff
path: root/src/canvas.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/canvas.h')
-rw-r--r--src/canvas.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/canvas.h b/src/canvas.h
index 03425d9..fc043e5 100644
--- a/src/canvas.h
+++ b/src/canvas.h
@@ -1,3 +1,5 @@
+#include <stdbool.h>
+
#ifndef IMV_CANVAS_H
#define IMV_CANVAS_H
@@ -46,6 +48,6 @@ void imv_canvas_draw(struct imv_canvas *canvas);
/* Blit the given image to the current OpenGL framebuffer */
void imv_canvas_draw_image(struct imv_canvas *canvas, struct imv_image *image,
int x, int y, double scale,
- enum upscaling_method upscaling_method);
+ enum upscaling_method upscaling_method, bool cache_invalidated);
#endif