diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2007-12-20 18:15:48 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2007-12-20 21:21:32 +0000 |
commit | 3bf06c336629d9a485fdb150058897e5a6a30b45 (patch) | |
tree | 979bd85b70707deb4e1b88ed8406571ba9a53b01 /test/cairo-test.c | |
parent | 643834e7aa3e90678276453439017359ef942c9e (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/cairo-test.c')
-rw-r--r-- | test/cairo-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cairo-test.c b/test/cairo-test.c index 9e1bdfe76..8fbd5e31f 100644 --- a/test/cairo-test.c +++ b/test/cairo-test.c @@ -241,7 +241,7 @@ cairo_test_target_has_similar (const cairo_test_t *test, cairo_boilerplate_targe cairo_t * cr = cairo_create (surface); cairo_surface_t *similar; cairo_push_group_with_content (cr, target->content); - similar = cairo_get_target (cr); + similar = cairo_get_group_target (cr); has_similar = cairo_surface_get_type (similar) == cairo_surface_get_type (surface); cairo_destroy (cr); |