bug: wrong xcb_copy_area param order

This commit is contained in:
Ian Osgood 2006-10-24 08:24:30 -07:00
parent 8381e53cc7
commit 69f740913d

View file

@ -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: