summaryrefslogtreecommitdiff
path: root/desktop/plotters.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2005-02-20 13:17:29 +0000
committerJames Bursa <james@netsurf-browser.org>2005-02-20 13:17:29 +0000
commit51c5143a80d073866a74d133e26beb8b9d69bd11 (patch)
tree99cb79034260fd8b7f97562b42b8ae154ead35b8 /desktop/plotters.h
parentd249f20d1efc2d19dc2d9c5ce8a960aa3f1f61da (diff)
downloadnetsurf-51c5143a80d073866a74d133e26beb8b9d69bd11.tar.gz
netsurf-51c5143a80d073866a74d133e26beb8b9d69bd11.tar.bz2
[project @ 2005-02-20 13:17:29 by bursa]
Font rewrite, part 1. svn path=/import/netsurf/; revision=1517
Diffstat (limited to 'desktop/plotters.h')
-rw-r--r--desktop/plotters.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/desktop/plotters.h b/desktop/plotters.h
index 5cf94f39b..1f0e0f375 100644
--- a/desktop/plotters.h
+++ b/desktop/plotters.h
@@ -17,7 +17,6 @@
struct bitmap;
-struct font_data;
/** Set of target specific plotting functions. */
@@ -30,7 +29,7 @@ struct plotter_table {
bool (*polygon)(int *p, unsigned int n, colour fill);
bool (*fill)(int x0, int y0, int x1, int y1, colour c);
bool (*clip)(int x0, int y0, int x1, int y1);
- bool (*text)(int x, int y, struct font_data *font, const char *text,
+ 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 (*bitmap)(int x, int y, int width, int height,