On 21/02/2017 23:14, Gerd Hoffmann wrote: > If graphic_* variables are set (via -g switch), pass on > that information to the guest so the driver can use it. > > Signed-off-by: Gerd Hoffmann <kra...@redhat.com> > --- > hw/display/virtio-gpu.c | 9 +++++++-- > 1 file changed, 7 insertions(+), 2 deletions(-) > > diff --git a/hw/display/virtio-gpu.c b/hw/display/virtio-gpu.c > index 9b530ab..04ba221 100644 > --- a/hw/display/virtio-gpu.c > +++ b/hw/display/virtio-gpu.c > @@ -1170,8 +1170,13 @@ static void virtio_gpu_device_realize(DeviceState > *qdev, Error **errp) > virtio_init(VIRTIO_DEVICE(g), "virtio-gpu", VIRTIO_ID_GPU, > g->config_size); > > - g->req_state[0].width = 1024; > - g->req_state[0].height = 768; > + if (graphic_width && graphic_height) { > + g->req_state[0].width = graphic_width; > + g->req_state[0].height = graphic_height; > + } else { > + g->req_state[0].width = 1024; > + g->req_state[0].height = 768; > + }
What about adding properties for this, and only using graphic_* as a fallback? Paolo > if (virtio_gpu_virgl_enabled(g->conf)) { > /* use larger control queue in 3d mode */ >