summaryrefslogtreecommitdiff
path: root/riscos/plotters.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-10-13 11:56:31 +0100
committerVincent Sanders <vince@kyllikki.org>2014-10-13 11:56:31 +0100
commit17be8cf216e08a57c511ec1ea43eae40874fa9de (patch)
tree270667cd4a3418b185e5432be1c7c8b7dca8792f /riscos/plotters.c
parent33c6073dbed882506e5a16fc43e7e2a71a2d6be2 (diff)
downloadnetsurf-17be8cf216e08a57c511ec1ea43eae40874fa9de.tar.gz
netsurf-17be8cf216e08a57c511ec1ea43eae40874fa9de.tar.bz2
Put the font operations table alongside all the other core API
The netsurf core is driven from numerous operation tables most of which are now set through a common netsurf_register() interface. The font and plotting interfaces are currently separate and unlike all the other operation tables are modified for differing contexts. This change moves the font operations alongside all the other operations table and remove unnecessary interaction with the renderers font internals. Further this also removes the need for css internals to be visible in frontends.
Diffstat (limited to 'riscos/plotters.c')
-rw-r--r--riscos/plotters.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/riscos/plotters.c b/riscos/plotters.c
index 6e49c2278..e3745c5ba 100644
--- a/riscos/plotters.c
+++ b/riscos/plotters.c
@@ -28,7 +28,6 @@
#include "utils/log.h"
#include "desktop/plotters.h"
-#include "render/font.h"
#include "riscos/bitmap.h"
#include "riscos/image.h"
@@ -36,7 +35,6 @@
#include "riscos/font.h"
#include "riscos/oslib_pre7.h"
-
static bool ro_plot_rectangle(int x0, int y0, int x1, int y1, const plot_style_t *style);
static bool ro_plot_line(int x0, int y0, int x1, int y1, const plot_style_t *style);
static bool ro_plot_draw_path(const draw_path * const path, int width,