mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-08 07:58:02 +02:00
bug: wrong xcb_copy_area param order
This commit is contained in:
parent
8381e53cc7
commit
69f740913d
1 changed files with 2 additions and 2 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue