From 86232d72a6709243136496770aade7c4d47ef28a Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Tue, 14 Jul 2009 10:03:58 +0000 Subject: next round of plotter refactor svn path=/trunk/netsurf/; revision=8512 --- amiga/plotters.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'amiga/plotters.h') diff --git a/amiga/plotters.h b/amiga/plotters.h index 37c892f62..ce5008d86 100755 --- a/amiga/plotters.h +++ b/amiga/plotters.h @@ -44,13 +44,13 @@ extern const struct plotter_table amiplot; bool ami_clg(colour c); bool ami_rectangle(int x0, int y0, int x1, int y1, const plot_style_t *style); bool ami_line(int x0, int y0, int x1, int y1, const plot_style_t *style); -bool ami_polygon(const int *p, unsigned int n, colour fill); +bool ami_polygon(const int *p, unsigned int n, const plot_style_t *style); bool ami_clip(int x0, int y0, int x1, int y1); bool ami_text(int x, int y, const struct css_style *style, const char *text, size_t length, colour bg, colour c); -bool ami_disc(int x, int y, int radius, colour c, bool filled); +bool ami_disc(int x, int y, int radius, const plot_style_t *style); bool ami_arc(int x, int y, int radius, int angle1, int angle2, - colour c); + const plot_style_t *style); bool ami_bitmap_tile(int x, int y, int width, int height, struct bitmap *bitmap, colour bg, bitmap_flags_t flags); -- cgit v1.2.3