michael@0: From f2fa15680ec3ac95cb68d4957557f06561a7dc55 Mon Sep 17 00:00:00 2001 michael@0: From: Karl Tomlinson michael@0: Date: Fri, 16 Jul 2010 22:39:50 +0000 michael@0: Subject: clip: return empty clip from _cairo_clip_copy_rectangle_list when all_clipped michael@0: michael@0: Fixes https://bugs.freedesktop.org/show_bug.cgi?id=29122 michael@0: Tested by test/get-clip michael@0: michael@0: Reviewed-by: Chris Wilson michael@0: --- michael@0: diff --git a/src/cairo-clip.c b/src/cairo-clip.c michael@0: index 12dc04d..f6173c6 100644 michael@0: --- a/src/cairo-clip.c michael@0: +++ b/src/cairo-clip.c michael@0: @@ -1499,7 +1499,10 @@ _cairo_clip_copy_rectangle_list (cairo_clip_t *clip, cairo_gstate_t *gstate) michael@0: int n_rects = 0; michael@0: int i; michael@0: michael@0: - if (clip != NULL && clip->path != NULL) { michael@0: + if (clip->all_clipped) michael@0: + goto DONE; michael@0: + michael@0: + if (clip->path != NULL) { michael@0: status = _cairo_clip_get_region (clip, ®ion); michael@0: if (status == CAIRO_INT_STATUS_NOTHING_TO_DO) { michael@0: goto DONE; michael@0: -- michael@0: cgit v0.8.3-6-g21f6