summaryrefslogtreecommitdiff
path: root/riscos
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-05-09 08:48:49 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-05-09 08:48:49 +0000
commit044018739bafc655f400039c84b7e912ae721c8a (patch)
tree6fddc177de4a69466cf50abca4950c08938f8e0e /riscos
parent05945ebf1dacf4b74fd7a6016297a9431ee83112 (diff)
downloadnetsurf-044018739bafc655f400039c84b7e912ae721c8a.tar.gz
netsurf-044018739bafc655f400039c84b7e912ae721c8a.tar.bz2
Fix Drawfile content handler build.
svn path=/trunk/netsurf/; revision=12335
Diffstat (limited to 'riscos')
-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;