mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2025-12-29 17:07:15 +00:00
qxl abi: add missing QXLCopyBits
This commit is contained in:
parent
08cfd6beaf
commit
63e07be145
@ -93,6 +93,9 @@ void red_get_drawable(RedMemSlotInfo *slots, int group_id,
|
||||
case QXL_DRAW_COPY:
|
||||
red->u.copy = qxl->u.copy;
|
||||
break;
|
||||
case QXL_COPY_BITS:
|
||||
red->u.copy_bits = qxl->u.copy_bits;
|
||||
break;
|
||||
case QXL_DRAW_FILL:
|
||||
red_get_fill_ptr(slots, group_id, &red->u.fill, &qxl->u.fill);
|
||||
break;
|
||||
@ -153,6 +156,9 @@ void red_get_compat_drawable(RedMemSlotInfo *slots, int group_id,
|
||||
case QXL_DRAW_COPY:
|
||||
red->u.copy = qxl->u.copy;
|
||||
break;
|
||||
case QXL_COPY_BITS:
|
||||
red->u.copy_bits = qxl->u.copy_bits;
|
||||
break;
|
||||
case QXL_DRAW_FILL:
|
||||
red_get_fill_ptr(slots, group_id, &red->u.fill, &qxl->u.fill);
|
||||
break;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user