summaryrefslogtreecommitdiff
path: root/image/png.c
diff options
context:
space:
mode:
Diffstat (limited to 'image/png.c')
-rw-r--r--image/png.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/image/png.c b/image/png.c
index 9fd79f2fd..ae7773149 100644
--- a/image/png.c
+++ b/image/png.c
@@ -13,6 +13,7 @@
#include "libpng/png.h"
#include "netsurf/utils/config.h"
#include "netsurf/content/content.h"
+#include "netsurf/desktop/plotters.h"
#include "netsurf/image/bitmap.h"
#include "netsurf/image/png.h"
#include "netsurf/utils/log.h"
@@ -243,4 +244,13 @@ void nspng_destroy(struct content *c)
if (c->bitmap)
bitmap_destroy(c->bitmap);
}
+
+bool nspng_redraw(struct content *c, int x, int y,
+ int width, int height,
+ int clip_x0, int clip_y0, int clip_x1, int clip_y1,
+ float scale, unsigned long background_colour)
+{
+ return plot.bitmap(x, y, width, height,
+ c->bitmap, background_colour);
+}
#endif