diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2013-12-30 17:48:43 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2013-12-31 12:30:30 +0000 |
commit | 164d9d26ac33029287a24fbed549e3a2858d5d51 (patch) | |
tree | 717c811f7481611406b794ad82d6a5c1446360a3 /tests/kms_flip.c | |
parent | 9d6cfa6b59d0c22cf772ca71069f9e5f3e53d055 (diff) |
kmstest: Fix up lifetimes of cairo objects
cairo_t is the short lived drawing context, whereas cairo_surface_t is
the heavyweight object that persists and is also tied to underlying GEM
objects. So make the kmstest API reflect the different weights and fix
the lifetime and underlying object reference leaks.
Based on the fix by Paulo Zanoni.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'tests/kms_flip.c')
-rw-r--r-- | tests/kms_flip.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/kms_flip.c b/tests/kms_flip.c index eaa42b5b..6a116a94 100644 --- a/tests/kms_flip.c +++ b/tests/kms_flip.c @@ -1003,6 +1003,7 @@ static void paint_flip_mode(struct kmstest_fb *fb, bool odd_frame) cairo_fill(cr); igt_assert(!cairo_status(cr)); + cairo_destroy(cr); } static int |