From 69f740913d6841708831668ef2a3bf124f373031 Mon Sep 17 00:00:00 2001 From: Ian Osgood Date: Tue, 24 Oct 2006 08:24:30 -0700 Subject: [PATCH] bug: wrong xcb_copy_area param order --- src/cairo-xcb-surface.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cairo-xcb-surface.c b/src/cairo-xcb-surface.c index c2e6c70be..046c62050 100644 --- a/src/cairo-xcb-surface.c +++ b/src/cairo-xcb-surface.c @@ -1187,8 +1187,8 @@ _cairo_xcb_surface_composite (cairo_operator_t op, dst->gc, src_x + src_attr.x_offset, src_y + src_attr.y_offset, - width, height, - dst_x, dst_y); + dst_x, dst_y, + width, height); break; case DO_XTILE: