diff options
author | Ian Osgood <iano@quirkster.com> | 2006-10-24 08:24:30 -0700 |
---|---|---|
committer | Ian Osgood <iano@quirkster.com> | 2006-10-24 08:24:30 -0700 |
commit | 69f740913d6841708831668ef2a3bf124f373031 (patch) | |
tree | 2d46f08466154157e1808589efde9bf92f640aa3 /src/cairo-xcb-surface.c | |
parent | 8381e53cc741af73fddebe61d9a0b28a8329c18b (diff) |
bug: wrong xcb_copy_area param order
Diffstat (limited to 'src/cairo-xcb-surface.c')
-rw-r--r-- | src/cairo-xcb-surface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cairo-xcb-surface.c b/src/cairo-xcb-surface.c index c2e6c70b..046c6205 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: |