summaryrefslogtreecommitdiff
path: root/desktop/plotters.h
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 /desktop/plotters.h
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 'desktop/plotters.h')
-rw-r--r--desktop/plotters.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/plotters.h b/desktop/plotters.h
index 1f0e0f375..f191654e5 100644
--- a/desktop/plotters.h
+++ b/desktop/plotters.h
@@ -31,7 +31,7 @@ struct plotter_table {
bool (*clip)(int x0, int y0, int x1, int y1);
bool (*text)(int x, int y, struct css_style *style, const char *text,
size_t length, colour bg, colour c);
- bool (*disc)(int x, int y, int radius, colour c);
+ bool (*disc)(int x, int y, int radius, colour c, bool filled);
bool (*bitmap)(int x, int y, int width, int height,
struct bitmap *bitmap, colour bg);
bool (*bitmap_tile)(int x, int y, int width, int height,