Remove nsws_plot_set_scale(), nsws_plot_get_scale() and nsws_plot_scale.

svn path=/trunk/netsurf/; revision=11945
This commit is contained in:
Michael Drake 2011-03-09 19:00:31 +00:00
parent e8fe0e64fd
commit a0e0d23c2d
2 changed files with 0 additions and 14 deletions

View File

@ -48,7 +48,6 @@
HDC plot_hdc;
static float nsws_plot_scale = 1.0;
static RECT plot_clip; /* currently set clipping rectangle */
@ -877,16 +876,6 @@ static bool path(const float *p, unsigned int n, colour fill, float width,
return true;
}
void nsws_plot_set_scale(float s)
{
nsws_plot_scale = s;
}
float nsws_plot_get_scale(void)
{
return nsws_plot_scale;
}
struct plotter_table plot = {
.rectangle = rectangle,
.line = line,

View File

@ -21,6 +21,3 @@
extern HDC plot_hdc;
void nsws_plot_set_scale(float s);
float nsws_plot_get_scale(void);