summaryrefslogtreecommitdiff
path: root/desktop/thumbnail.h
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/thumbnail.h')
-rw-r--r--desktop/thumbnail.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/desktop/thumbnail.h b/desktop/thumbnail.h
index 71efdd81e..655c25339 100644
--- a/desktop/thumbnail.h
+++ b/desktop/thumbnail.h
@@ -24,6 +24,7 @@
#define _NETSURF_DESKTOP_THUMBNAIL_H_
#include <stdbool.h>
+#include "utils/types.h"
struct hlcache_handle;
struct bitmap;
@@ -37,6 +38,7 @@ struct bitmap;
* \param content The content to redraw for thumbnail
* \param width The thumbnail width
* \param height The thumbnail height
+ * \param ctx current redraw context
* \return true if successful, false otherwise
*
* The thumbnail is guaranteed to be filled to its width/height extents, so
@@ -45,7 +47,7 @@ struct bitmap;
* Units for width and height are pixels.
*/
bool thumbnail_redraw(struct hlcache_handle *content,
- int width, int height);
+ int width, int height, const struct redraw_context *ctx);
/* In platform specific thumbnail.c. */