From f9ecd56f62f833f21b3475f0d1b59bc8e053a03e Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Wed, 8 Jul 2009 22:04:40 +0000 Subject: ploter refactor of rectangle handling svn path=/trunk/netsurf/; revision=8399 --- amiga/plotters.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'amiga/plotters.h') diff --git a/amiga/plotters.h b/amiga/plotters.h index 01c6c99ec..ce8154f75 100755 --- a/amiga/plotters.h +++ b/amiga/plotters.h @@ -23,12 +23,10 @@ extern const struct plotter_table amiplot; bool ami_clg(colour c); -bool ami_rectangle(int x0, int y0, int width, int height, - int line_width, colour c, bool dotted, bool dashed); +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, int width, colour c, bool dotted, bool dashed); bool ami_polygon(const int *p, unsigned int n, colour fill); -bool ami_fill(int x0, int y0, int x1, int y1, 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); -- cgit v1.2.3