summaryrefslogtreecommitdiff
path: root/riscos/print.c
diff options
context:
space:
mode:
authorRob Kendrick <rjek@netsurf-browser.org>2006-03-19 19:03:07 +0000
committerRob Kendrick <rjek@netsurf-browser.org>2006-03-19 19:03:07 +0000
commit1562dd03cbfe225670820e11c6d85f90b670dc52 (patch)
tree33cc840ced84dd9434987e993f73e5d104b934f4 /riscos/print.c
parent35bb5f96d5daedc961ea887b58bd839b13e8e740 (diff)
downloadnetsurf-1562dd03cbfe225670820e11c6d85f90b670dc52.tar.gz
netsurf-1562dd03cbfe225670820e11c6d85f90b670dc52.tar.bz2
[project @ 2006-03-19 19:03:07 by rjek]
Implemented unfilled disc plotting and GTK disc plotting svn path=/import/netsurf/; revision=2136
Diffstat (limited to 'riscos/print.c')
-rw-r--r--riscos/print.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/riscos/print.c b/riscos/print.c
index f06a43a46..21b3a511b 100644
--- a/riscos/print.c
+++ b/riscos/print.c
@@ -97,7 +97,8 @@ static bool print_fonts_plot_clip(int clip_x0, int clip_y0,
int clip_x1, int clip_y1);
static bool print_fonts_plot_text(int x, int y, struct css_style *style,
const char *text, size_t length, colour bg, colour c);
-static bool print_fonts_plot_disc(int x, int y, int radius, colour colour);
+static bool print_fonts_plot_disc(int x, int y, int radius, colour c,
+ bool filled);
static bool print_fonts_plot_bitmap(int x, int y, int width, int height,
struct bitmap *bitmap, colour bg);
static bool print_fonts_plot_bitmap_tile(int x, int y, int width, int height,
@@ -808,7 +809,7 @@ bool print_fonts_plot_fill(int x0, int y0, int x1, int y1, colour c)
{ return true; }
bool print_fonts_plot_clip(int clip_x0, int clip_y0,
int clip_x1, int clip_y1) { return true; }
-bool print_fonts_plot_disc(int x, int y, int radius, colour colour)
+bool print_fonts_plot_disc(int x, int y, int radius, colour colour, bool filled)
{ return true; }
bool print_fonts_plot_bitmap(int x, int y, int width, int height,
struct bitmap *bitmap, colour bg) { return true; }