spice: use the right head for multi-monitor
Look up the associated head monitor config. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-id: 1465911849-30423-3-git-send-email-marcandre.lureau@redhat.com Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
c540128f93
commit
c61d8126fc
|
@ -688,6 +688,7 @@ static int interface_client_monitors_config(QXLInstance *sin,
|
||||||
{
|
{
|
||||||
SimpleSpiceDisplay *ssd = container_of(sin, SimpleSpiceDisplay, qxl);
|
SimpleSpiceDisplay *ssd = container_of(sin, SimpleSpiceDisplay, qxl);
|
||||||
QemuUIInfo info;
|
QemuUIInfo info;
|
||||||
|
int head;
|
||||||
|
|
||||||
if (!dpy_ui_info_supported(ssd->dcl.con)) {
|
if (!dpy_ui_info_supported(ssd->dcl.con)) {
|
||||||
return 0; /* == not supported by guest */
|
return 0; /* == not supported by guest */
|
||||||
|
@ -697,14 +698,12 @@ static int interface_client_monitors_config(QXLInstance *sin,
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* FIXME: multihead is tricky due to the way
|
|
||||||
* spice has multihead implemented.
|
|
||||||
*/
|
|
||||||
memset(&info, 0, sizeof(info));
|
memset(&info, 0, sizeof(info));
|
||||||
if (mc->num_of_monitors > 0) {
|
|
||||||
info.width = mc->monitors[0].width;
|
head = qemu_console_get_head(ssd->dcl.con);
|
||||||
info.height = mc->monitors[0].height;
|
if (mc->num_of_monitors > head) {
|
||||||
|
info.width = mc->monitors[head].width;
|
||||||
|
info.height = mc->monitors[head].height;
|
||||||
}
|
}
|
||||||
dpy_set_ui_info(ssd->dcl.con, &info);
|
dpy_set_ui_info(ssd->dcl.con, &info);
|
||||||
dprint(1, "%s/%d: size %dx%d\n", __func__, ssd->qxl.id,
|
dprint(1, "%s/%d: size %dx%d\n", __func__, ssd->qxl.id,
|
||||||
|
|
Loading…
Reference in New Issue