diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2024-06-17 12:27:56 +0400 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2024-07-22 12:47:28 +0400 |
commit | cc455d7eef7f1c7be58eddc9d76ae1a99d293b65 (patch) | |
tree | 5f757df51e3e3374ac9d7b8dd93120c30717f4a9 | |
parent | 1f1736a8f16d27a99abd371caaeedc10e6411d15 (diff) | |
download | qemu-cc455d7eef7f1c7be58eddc9d76ae1a99d293b65.zip qemu-cc455d7eef7f1c7be58eddc9d76ae1a99d293b65.tar.gz qemu-cc455d7eef7f1c7be58eddc9d76ae1a99d293b65.tar.bz2 |
virtio-gpu-gl: declare dependency on ui-opengl
Since commit e8a2db94 "virtio-gpu-virgl: teach it to get the QEMU EGL
display", virtio-gl depends on ui-opengl symbol "qemu_egl_display".
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2391
Fixes: e8a2db94 ("virtio-gpu-virgl: teach it to get the QEMU EGL display")
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
-rw-r--r-- | hw/display/virtio-gpu-gl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/display/virtio-gpu-gl.c b/hw/display/virtio-gpu-gl.c index e06be60..952820a 100644 --- a/hw/display/virtio-gpu-gl.c +++ b/hw/display/virtio-gpu-gl.c @@ -170,3 +170,4 @@ static void virtio_register_types(void) type_init(virtio_register_types) module_dep("hw-display-virtio-gpu"); +module_dep("ui-opengl"); |