summaryrefslogtreecommitdiff
path: root/src/cairo-ps-surface.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2010-01-22 22:18:35 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2010-01-22 23:01:53 +0000
commitf57cb45fa9274351b36f96eb932a931493b5db94 (patch)
tree3f25df8aa0d15a6d59fec19b0be33a3003e9f628 /src/cairo-ps-surface.c
parent58540405d9bc6581c1d07f17bd5aee330f06d4a2 (diff)
ps: Arguments to fill_extents() were reversed.
Diffstat (limited to 'src/cairo-ps-surface.c')
-rw-r--r--src/cairo-ps-surface.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cairo-ps-surface.c b/src/cairo-ps-surface.c
index b7f3aa2b..cafa4300 100644
--- a/src/cairo-ps-surface.c
+++ b/src/cairo-ps-surface.c
@@ -3605,7 +3605,8 @@ _cairo_ps_surface_fill (void *abstract_surface,
/* use the more accurate extents */
if (extents.is_bounded) {
_cairo_path_fixed_fill_extents (path,
- tolerance, fill_rule,
+ fill_rule,
+ tolerance,
&extents.mask);
if (! _cairo_rectangle_intersect (&extents.bounded, &extents.mask))