]> git.proxmox.com Git - mirror_qemu.git/commit - ui/console.c
ui: simplify gl unblock & flush
authorMarc-André Lureau <marcandre.lureau@redhat.com>
Thu, 11 Mar 2021 08:11:37 +0000 (12:11 +0400)
committerMarc-André Lureau <marcandre.lureau@redhat.com>
Tue, 21 Dec 2021 06:50:21 +0000 (10:50 +0400)
commitf6413cbfd0b3a3f85ebaf9fe13494af1dad916bb
tree89ce165cccf3618b10703f2b01c20047ea63b17f
parenta9b1e471e1783a1d7ae9215f9b8adc7cdb053367
ui: simplify gl unblock & flush

GraphicHw.gl_flushed was introduced to notify the
device (vhost-user-gpu) that the GL resources (the display scanout) are
no longer needed.

It was decoupled from QEMU own gl-blocking mechanism, but that
difference isn't helping. Instead, we can reuse QEMU gl-blocking and
notify virtio_gpu_gl_flushed() when unblocking (to unlock
vhost-user-gpu).

An extra block/unblock is added arount dpy_gl_update() so existing
backends that don't block will have the flush event handled. It will
also help when there are no backends associated.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Acked-by: Gerd Hoffmann <kraxel@redhat.com>
hw/display/vhost-user-gpu.c
hw/display/virtio-gpu-base.c
hw/display/virtio-vga.c
include/ui/console.h
ui/console.c
ui/gtk-egl.c
ui/gtk-gl-area.c
ui/gtk.c
ui/sdl2-gl.c
ui/spice-display.c