summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--capture.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/capture.c b/capture.c
index dc0e643..6f5ecd0 100644
--- a/capture.c
+++ b/capture.c
@@ -132,6 +132,10 @@ draw_cb(GtkWidget *widget, cairo_t *cr, gpointer userdata)
sy /= cairo_image_surface_get_height(ct->surface);
cairo_scale(cr, sx, sy);
#endif
+#if 0
+ cairo_translate(cr, cairo_image_surface_get_width(ct->surface), 0.0);
+ cairo_scale(cr, -1.0, 1.0);
+#endif
cairo_set_source_surface(cr, ct->surface, 0, 0);
cairo_paint(cr);
cairo_restore(cr);