From 388ce7b8c46ae20b97f891605f014db7fcb2fc6f Mon Sep 17 00:00:00 2001 From: Rob Kendrick Date: Tue, 21 Mar 2006 17:22:41 +0000 Subject: [project @ 2006-03-21 17:22:41 by rjek] Radio and checkbox widgets are now 3D, and implemented arc plotting for them svn path=/import/netsurf/; revision=2145 --- riscos/save_draw.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'riscos/save_draw.c') diff --git a/riscos/save_draw.c b/riscos/save_draw.c index 03afeca41..3b024d620 100644 --- a/riscos/save_draw.c +++ b/riscos/save_draw.c @@ -38,6 +38,8 @@ static bool ro_save_draw_text(int x, int y, struct css_style *style, const char *text, size_t length, colour bg, colour c); static bool ro_save_draw_disc(int x, int y, int radius, colour colour, bool filled); +static bool ro_save_draw_arc(int x, int y, int radius, int angle1, int angle2, + colour c); static bool ro_save_draw_bitmap(int x, int y, int width, int height, struct bitmap *bitmap, colour bg); static bool ro_save_draw_bitmap_tile(int x, int y, int width, int height, @@ -57,6 +59,7 @@ const struct plotter_table ro_save_draw_plotters = { ro_save_draw_clip, ro_save_draw_text, ro_save_draw_disc, + ro_save_draw_arc, ro_save_draw_bitmap, ro_save_draw_bitmap_tile, ro_save_draw_group_start, @@ -258,6 +261,11 @@ bool ro_save_draw_disc(int x, int y, int radius, colour colour, bool filled) return true; } +bool ro_save_draw_arc(int x, int y, int radius, int angle1, int angle2, + colour c); +{ + return true; +} bool ro_save_draw_bitmap(int x, int y, int width, int height, struct bitmap *bitmap, colour bg) -- cgit v1.2.3