summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2010-02-22 15:26:37 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2010-02-22 15:26:37 +0000
commit21b2457aabf7df2a9f040751cd48e396443262f1 (patch)
treeb22421b57601b525020508a215953934e598ad90
parent6dd22b767808f721de5d00fe384711ffaa269453 (diff)
fallback: Initialize rects.is_bounded for span renderer.HEADmaster
-rw-r--r--src/cairo-surface-fallback.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cairo-surface-fallback.c b/src/cairo-surface-fallback.c
index 232e15e9..ae39b2b6 100644
--- a/src/cairo-surface-fallback.c
+++ b/src/cairo-surface-fallback.c
@@ -867,7 +867,8 @@ _composite_spans_draw_func (void *closure,
* we'd like to place the result. */
rects.bounded.x -= dst_x;
rects.bounded.y -= dst_y;
- rects.unbounded = rects.bounded;;
+ rects.unbounded = rects.bounded;
+ rects.is_bounded = _cairo_operator_bounded_by_either (op);
return _cairo_surface_composite_polygon (dst, op, src,
info->fill_rule,