summaryrefslogtreecommitdiff
path: root/test/get-clip.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2007-12-20 18:15:48 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2007-12-20 21:21:32 +0000
commit3bf06c336629d9a485fdb150058897e5a6a30b45 (patch)
tree979bd85b70707deb4e1b88ed8406571ba9a53b01 /test/get-clip.c
parent643834e7aa3e90678276453439017359ef942c9e (diff)
[test/*] Create new surfaces using the group target.
cairo_get_target() returns the original surface passed to cairo_create(), and not the current destination as required when testing drawing to the same surface using multiple contexts. For completeness we also use the group target when creating similar surfaces within the tests (to check that similar surfaces of similar surfaces also work).
Diffstat (limited to 'test/get-clip.c')
-rw-r--r--test/get-clip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/get-clip.c b/test/get-clip.c
index 0de84e904..bd92e1e1e 100644
--- a/test/get-clip.c
+++ b/test/get-clip.c
@@ -119,7 +119,7 @@ draw (cairo_t *cr, int width, int height)
const char *phase;
cairo_bool_t uses_clip_rects;
- surface = cairo_surface_create_similar (cairo_get_target (cr),
+ surface = cairo_surface_create_similar (cairo_get_group_target (cr),
CAIRO_CONTENT_COLOR, 100, 100);
/* don't use cr accidentally */
cr = NULL;