summaryrefslogtreecommitdiff
path: root/gtk/gtk_print.c
diff options
context:
space:
mode:
authorJohn Tytgat <joty@netsurf-browser.org>2009-02-03 01:27:54 +0000
committerJohn Tytgat <joty@netsurf-browser.org>2009-02-03 01:27:54 +0000
commitfbf6d4cd4116dac4287403c52233f62bac88f3c0 (patch)
tree7f05710df78ef24f788fdeaa0cb186df5a3e77b6 /gtk/gtk_print.c
parent9a1751020684c410d7ad8824dd3cab7c5dd90733 (diff)
downloadnetsurf-fbf6d4cd4116dac4287403c52233f62bac88f3c0.tar.gz
netsurf-fbf6d4cd4116dac4287403c52233f62bac88f3c0.tar.bz2
- Constify parameters of struct plotter_table::polygon and struct plotter_table::path
- riscos/save_draw.c(ro_save_draw_plotters): Make it static. - desktop/save_pdf/pdf_plotters.c(pdf_plot_path): fix broken implementation (coordinates path were wrong, no clip/text mode update, transformation matrix was overwritten); only update fill and/or stroke color when fill and/or stroke is done. (pdf_begin): disable compression when PDF_DEBUG is set svn path=/trunk/netsurf/; revision=6361
Diffstat (limited to 'gtk/gtk_print.c')
-rw-r--r--gtk/gtk_print.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/gtk_print.c b/gtk/gtk_print.c
index 1b03f5532..4ac8956f5 100644
--- a/gtk/gtk_print.c
+++ b/gtk/gtk_print.c
@@ -55,9 +55,9 @@ static bool nsgtk_print_plot_rectangle(int x0, int y0, int width, int height,
int line_width, colour c, bool dotted, bool dashed);
static bool nsgtk_print_plot_line(int x0, int y0, int x1, int y1, int width,
colour c, bool dotted, bool dashed);
-static bool nsgtk_print_plot_polygon(int *p, unsigned int n, colour fill);
-static bool nsgtk_print_plot_path(float *p, unsigned int n, colour fill, float width,
- colour c, float *transform);
+static bool nsgtk_print_plot_polygon(const int *p, unsigned int n, colour fill);
+static bool nsgtk_print_plot_path(const float *p, unsigned int n, colour fill, float width,
+ colour c, const float transform[6]);
static bool nsgtk_print_plot_fill(int x0, int y0, int x1, int y1, colour c);
static bool nsgtk_print_plot_clip(int clip_x0, int clip_y0,
int clip_x1, int clip_y1);
@@ -170,7 +170,7 @@ bool nsgtk_print_plot_line(int x0, int y0, int x1, int y1, int width,
}
-bool nsgtk_print_plot_polygon(int *p, unsigned int n, colour fill)
+bool nsgtk_print_plot_polygon(const int *p, unsigned int n, colour fill)
{
LOG(("Plotting polygon."));
@@ -385,8 +385,8 @@ bool nsgtk_print_plot_bitmap_tile(int x, int y, int width, int height,
return true;
}
-bool nsgtk_print_plot_path(float *p, unsigned int n, colour fill, float width,
- colour c, float *transform)
+bool nsgtk_print_plot_path(const float *p, unsigned int n, colour fill, float width,
+ colour c, const float transform[6])
{
/* Only the internal SVG renderer uses this plot call currently,
* and the GTK version uses librsvg. Thus, we ignore this complexity,