summaryrefslogtreecommitdiff
path: root/test/svg-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/svg-clip.c
parent643834e7aa3e90678276453439017359ef942c9e (diff)
downloadcairo-3bf06c336629d9a485fdb150058897e5a6a30b45.tar.gz
[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/svg-clip.c')
-rw-r--r--test/svg-clip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/svg-clip.c b/test/svg-clip.c
index 81af1040f..338f28f1e 100644
--- a/test/svg-clip.c
+++ b/test/svg-clip.c
@@ -76,7 +76,7 @@ test_clip (cairo_t *cr, double width, double height)
/* Create a new context for this surface to test overlapped
* drawing from two contexts */
- cr2 = cairo_create (cairo_get_target (cr));
+ cr2 = cairo_create (cairo_get_group_target (cr));
/* Using the new context, draw a black vertical line, which should
* appear unclipped on top of everything drawn so far. */