[cairo-commit] src/cairo-xcb-surface.c
Ian Osgood
iano at kemper.freedesktop.org
Tue Oct 24 08:34:24 PDT 2006
src/cairo-xcb-surface.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
New commits:
diff-tree 69f740913d6841708831668ef2a3bf124f373031 (from 8381e53cc741af73fddebe61d9a0b28a8329c18b)
Author: Ian Osgood <iano at quirkster.com>
Date: Tue Oct 24 08:24:30 2006 -0700
bug: wrong xcb_copy_area param order
diff --git a/src/cairo-xcb-surface.c b/src/cairo-xcb-surface.c
index c2e6c70..046c620 100644
--- a/src/cairo-xcb-surface.c
+++ b/src/cairo-xcb-surface.c
@@ -1187,8 +1187,8 @@ _cairo_xcb_surface_composite (cairo_oper
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:
More information about the cairo-commit
mailing list