summaryrefslogtreecommitdiff
path: root/gtk/gtk_plotters.c
diff options
context:
space:
mode:
authorRob Kendrick <rjek@netsurf-browser.org>2007-08-11 21:40:19 +0000
committerRob Kendrick <rjek@netsurf-browser.org>2007-08-11 21:40:19 +0000
commit4e6f8d33471f29be9098f8e94347e32279132baa (patch)
tree8c889ce60b51acf6b362d0ee54e44c4422c88464 /gtk/gtk_plotters.c
parent589069cc9a647064b72b6acd0e3a79728d8dd5e3 (diff)
downloadnetsurf-4e6f8d33471f29be9098f8e94347e32279132baa.tar.gz
netsurf-4e6f8d33471f29be9098f8e94347e32279132baa.tar.bz2
revert 3482 so it can be reapplied as two seperate patches
svn path=/trunk/netsurf/; revision=3496
Diffstat (limited to 'gtk/gtk_plotters.c')
-rw-r--r--gtk/gtk_plotters.c16
1 files changed, 1 insertions, 15 deletions
diff --git a/gtk/gtk_plotters.c b/gtk/gtk_plotters.c
index 9f40f3694..e1693f6a9 100644
--- a/gtk/gtk_plotters.c
+++ b/gtk/gtk_plotters.c
@@ -52,8 +52,6 @@ static bool nsgtk_plot_rectangle(int x0, int y0, int width, int height,
static bool nsgtk_plot_line(int x0, int y0, int x1, int y1, int width,
colour c, bool dotted, bool dashed);
static bool nsgtk_plot_polygon(int *p, unsigned int n, colour fill);
-static bool nsgtk_plot_path(float *p, unsigned int n, colour fill, float width,
- colour c, float *transform);
static bool nsgtk_plot_fill(int x0, int y0, int x1, int y1, colour c);
static bool nsgtk_plot_clip(int clip_x0, int clip_y0,
int clip_x1, int clip_y1);
@@ -90,8 +88,7 @@ const struct plotter_table nsgtk_plotters = {
nsgtk_plot_bitmap_tile,
NULL,
NULL,
- NULL,
- nsgtk_plot_path
+ NULL
};
@@ -377,17 +374,6 @@ bool nsgtk_plot_bitmap_tile(int x, int y, int width, int height,
return true;
}
-bool nsgtk_plot_path(float *p, unsigned int n, colour fill, float width,
- colour c, float *transform)
-{
- /* Only the internal SVG renderer uses this plot call currently,
- * and the GTK version uses librsvg. Thus, we ignore this complexity,
- * and just return true obliviously.
- */
-
- return true;
-}
-
void nsgtk_set_colour(colour c)
{
int r, g, b;