summaryrefslogtreecommitdiff
path: root/riscos/plotters.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-03-09 16:20:55 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-03-09 16:20:55 +0000
commitb46e69fe2297480183364fb87bf195267652629b (patch)
treea1f1c8ae04ae0c23c4f8aaf285748cbafa8b7962 /riscos/plotters.c
parent95916ab99da6be6854746f62792fe4baf9691c37 (diff)
downloadnetsurf-b46e69fe2297480183364fb87bf195267652629b.tar.gz
netsurf-b46e69fe2297480183364fb87bf195267652629b.tar.bz2
Purge ro_plot_set_scale() and ro_plot_scale global, as front ends nolonger need to maintain scale for plotting.
svn path=/trunk/netsurf/; revision=11942
Diffstat (limited to 'riscos/plotters.c')
-rw-r--r--riscos/plotters.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/riscos/plotters.c b/riscos/plotters.c
index 4d20910b4..966b6cb68 100644
--- a/riscos/plotters.c
+++ b/riscos/plotters.c
@@ -69,7 +69,6 @@ const struct plotter_table ro_plotters = {
int ro_plot_origin_x = 0;
int ro_plot_origin_y = 0;
-float ro_plot_scale = 1.0;
/** One version of the A9home OS is incapable of drawing patterned lines */
bool ro_plot_patterned_lines = true;
@@ -537,12 +536,3 @@ bool ro_plot_bitmap(int x, int y, int width, int height,
bitmap_get_opaque(bitmap) ? IMAGE_PLOT_TINCT_OPAQUE :
IMAGE_PLOT_TINCT_ALPHA);
}
-
-/**
- * Set the scale for subsequent text plotting.
- */
-
-void ro_plot_set_scale(float scale)
-{
- ro_plot_scale = scale;
-}