diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2010-03-11 01:48:08 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2010-03-11 01:48:08 +0000 |
commit | ca6e4e1f91e0a90666551d2fa74cfc04484d4e80 (patch) | |
tree | 0eda1f761ec65d5f7f6811e0cd02cf5e2d7d338e | |
parent | 6754f1db1716a6570c82e207e21b09a10de120ba (diff) |
spans: Initialise rects->is_bounded for polygon compat.
-rw-r--r-- | src/cairo-spans.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cairo-spans.c b/src/cairo-spans.c index e8ef0cfb1..434fce0bd 100644 --- a/src/cairo-spans.c +++ b/src/cairo-spans.c @@ -118,6 +118,8 @@ _cairo_surface_composite_trapezoids_as_polygon (cairo_surface_t *surface, rects.unbounded = rects.bounded; + rects.is_bounded = _cairo_operator_bounded_by_either (op); + converter = _create_scan_converter (CAIRO_FILL_RULE_WINDING, antialias, &rects); |