summaryrefslogtreecommitdiffstats
path: root/hw/display
diff options
context:
space:
mode:
authorMarc-André Lureau2021-02-04 11:52:21 +0100
committerGerd Hoffmann2021-02-04 15:58:54 +0100
commit2cc002483e9cc075896912ebc3ebd3fe86660902 (patch)
tree7ba03d9403957d0bc50d03e43be0e4cac628b891 /hw/display
parentui: annotate DCLOps callback requirements (diff)
downloadqemu-2cc002483e9cc075896912ebc3ebd3fe86660902.tar.gz
qemu-2cc002483e9cc075896912ebc3ebd3fe86660902.tar.xz
qemu-2cc002483e9cc075896912ebc3ebd3fe86660902.zip
ui: remove console_has_gl_dmabuf()
This check is currently limited. It only is used by vhost-user-gpu (not by vfio-display), and will print an error repeatedly during run-time. We are going to dissociate the GL context from the DisplayChangeListener, and listeners may come and go. The following patches will address this differently. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20210204105232.834642-10-marcandre.lureau@redhat.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/display')
-rw-r--r--hw/display/vhost-user-gpu.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/hw/display/vhost-user-gpu.c b/hw/display/vhost-user-gpu.c
index 55b0ed15f2..dd587436ff 100644
--- a/hw/display/vhost-user-gpu.c
+++ b/hw/display/vhost-user-gpu.c
@@ -224,11 +224,6 @@ vhost_user_gpu_handle_display(VhostUserGPU *g, VhostUserGpuMsg *msg)
close(dmabuf->fd);
dmabuf->fd = -1;
}
- if (!console_has_gl_dmabuf(con)) {
- /* it would be nice to report that error earlier */
- error_report("console doesn't support dmabuf!");
- break;
- }
dpy_gl_release_dmabuf(con, dmabuf);
if (fd == -1) {
dpy_gl_scanout_disable(con);