summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--riscos/draw.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/riscos/draw.c b/riscos/draw.c
index d2773439a..215070860 100644
--- a/riscos/draw.c
+++ b/riscos/draw.c
@@ -52,7 +52,8 @@ static bool draw_convert(struct content *c);
static void draw_destroy(struct content *c);
static bool draw_redraw(struct content *c, int x, int y,
int width, int height, const struct rect *clip,
- float scale, colour background_colour);
+ float scale, colour background_colour,
+ bool repeat_x, bool repeat_y);
static nserror draw_clone(const struct content *old, struct content **newc);
static content_type draw_content_type(lwc_string *mime_type);
@@ -68,7 +69,6 @@ static const content_handler draw_content_handler = {
draw_redraw,
NULL,
NULL,
- NULL,
draw_clone,
NULL,
draw_content_type,
@@ -218,7 +218,8 @@ void draw_destroy(struct content *c)
bool draw_redraw(struct content *c, int x, int y,
int width, int height, const struct rect *clip,
- float scale, colour background_colour)
+ float scale, colour background_colour,
+ bool repeat_x, bool repeat_y)
{
draw_content *draw = (draw_content *) c;
os_trfm matrix;