From: Cole Robinson Date: Sun, 8 May 2016 17:38:56 +0000 (-0400) Subject: qemu: command: unconditionally allow accel3d='no' X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=f0187c1f27df61d77a0934c0cf9344717c7ac1b8;p=libvirt.git qemu: command: unconditionally allow accel3d='no' This matches how we handle spice gl='no' even if spice GL isn't supported. Not too interesting in practice but I figure we should be consistent --- diff --git a/src/qemu/qemu_command.c b/src/qemu/qemu_command.c index cc06a45ac2..7e39b8ab24 100644 --- a/src/qemu/qemu_command.c +++ b/src/qemu/qemu_command.c @@ -4116,7 +4116,7 @@ qemuBuildDeviceVideoStr(const virDomainDef *def, virBufferAsprintf(&buf, "%s,id=%s", model, video->info.alias); if (video->type == VIR_DOMAIN_VIDEO_TYPE_VIRTIO) { - if (video->accel && video->accel->accel3d) { + if (video->accel && video->accel->accel3d == VIR_TRISTATE_SWITCH_ON) { if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_VIRTIO_GPU_VIRGL)) { virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s", _("virtio-gpu 3d acceleration is not supported"));