[byzanz] Fix bugs with previous checkin
- From: Benjamin Otte <otte src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [byzanz] Fix bugs with previous checkin
- Date: Wed, 26 Aug 2009 14:27:36 +0000 (UTC)
commit a322b96f952b98d5d22ee8f22cfcd7053c4287e2
Author: Benjamin Otte <otte gnome org>
Date: Wed Aug 26 15:35:00 2009 +0200
Fix bugs with previous checkin
The previous checkin basically did not work at all.
src/byzanzrecorder.c | 12 +++++++-----
1 files changed, 7 insertions(+), 5 deletions(-)
---
diff --git a/src/byzanzrecorder.c b/src/byzanzrecorder.c
index 4f05335..4713084 100644
--- a/src/byzanzrecorder.c
+++ b/src/byzanzrecorder.c
@@ -77,13 +77,11 @@ ensure_image_surface (cairo_surface_t * surface, GdkRectangle *extents)
cairo_surface_t *image;
cairo_t *cr;
- if (cairo_surface_get_type (surface) == CAIRO_SURFACE_TYPE_IMAGE) {
- cairo_surface_reference (surface);
+ if (cairo_surface_get_type (surface) == CAIRO_SURFACE_TYPE_IMAGE)
return surface;
- }
image = cairo_image_surface_create (CAIRO_FORMAT_RGB24, extents->width, extents->height);
- cairo_surface_set_device_offset (surface, -extents->x, -extents->y);
+ cairo_surface_set_device_offset (image, -extents->x, -extents->y);
cr = cairo_create (image);
cairo_set_source_surface (cr, surface, 0, 0);
@@ -125,14 +123,18 @@ byzanz_recorder_create_snapshot (ByzanzRecorder *recorder, const GdkRegion *inva
cairo_restore (cr);
}
+ if (cairo_status (cr))
+ g_print ("error capturing image: %s\n", cairo_status_to_string (cairo_status (cr)));
cairo_destroy (cr);
+ surface = ensure_image_surface (surface, &extents);
+
/* adjust device offset here - the layers work in GdkScreen coordinates, the rest
* of the code works in coordinates realtive to the passed in area. */
cairo_surface_set_device_offset (surface,
recorder->area.x - extents.x, recorder->area.y - extents.y);
- return ensure_image_surface (surface, &extents);
+ return surface;
}
static gboolean byzanz_recorder_snapshot (ByzanzRecorder *recorder);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]