diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2011-08-14 00:43:09 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2011-08-14 12:37:57 +0100 |
commit | 6b3d53646eb7aa3f13a0a6d133ec2ffcd1df8fdd (patch) | |
tree | d1bfd282026b281fdb9923b4bc81f94d31e4b322 /src/cairo-xlib-surface.c | |
parent | 8a90b22897b6460b3396b9959383131039bd9ce2 (diff) |
image: peek through a snapshot to the recording surface behind
Fixes record-* after the recent overhaul.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/cairo-xlib-surface.c')
-rw-r--r-- | src/cairo-xlib-surface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo-xlib-surface.c b/src/cairo-xlib-surface.c index b2fa0a7a1..885dc5928 100644 --- a/src/cairo-xlib-surface.c +++ b/src/cairo-xlib-surface.c @@ -2412,7 +2412,7 @@ _cairo_xlib_surface_upload(cairo_xlib_surface_t *surface, return CAIRO_INT_STATUS_UNSUPPORTED; if (image->base.backend->type != CAIRO_SURFACE_TYPE_IMAGE) { - if (image->base.backend->type == CAIRO_INTERNAL_SURFACE_TYPE_SNAPSHOT) { + if (_cairo_surface_is_snapshot (&image->base)) { image = (cairo_image_surface_t *) ((cairo_surface_snapshot_t *) image)->target; extents.x = extents.y = 0; extents.width = image->width; |