diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2010-10-15 10:37:25 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2010-10-15 10:40:53 +0100 |
commit | 0d93468efc7f7337b63c0cd746d5185e14d345f1 (patch) | |
tree | 5e4b956a73d45fd1dc6b61df4e9d6ed5045753bc | |
parent | 42ecc427f361bcce68d529ae308ab65ff14ecea8 (diff) |
xcb: Pass clip to composite_glyphs_via_mask
Spotted by Uli Schlachter.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r-- | src/cairo-xcb-surface-render.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cairo-xcb-surface-render.c b/src/cairo-xcb-surface-render.c index 54839d5df..8a6aa2809 100644 --- a/src/cairo-xcb-surface-render.c +++ b/src/cairo-xcb-surface-render.c @@ -4665,8 +4665,7 @@ _cairo_xcb_surface_render_glyphs (cairo_xcb_surface_t *surface, status = _cairo_xcb_surface_render_glyphs_via_mask (surface, op, source, scaled_font, glyphs, num_glyphs, - have_clip ? &local_clip : NULL, - &extents); + clip, &extents); } if (have_clip) |