summaryrefslogtreecommitdiffstats
path: root/ui/spice-display.c
diff options
context:
space:
mode:
authorGerd Hoffmann2017-06-06 13:06:18 +0200
committerGerd Hoffmann2017-06-14 09:52:35 +0200
commitfe5c44f9c95be3f74fb58902077ac587998d1392 (patch)
tree685c6daa52014121a16531135190a49070bd4912 /ui/spice-display.c
parentsdl: prefer sdl2 over sdl1 (diff)
downloadqemu-fe5c44f9c95be3f74fb58902077ac587998d1392.tar.gz
qemu-fe5c44f9c95be3f74fb58902077ac587998d1392.tar.xz
qemu-fe5c44f9c95be3f74fb58902077ac587998d1392.zip
spice: don't enter opengl mode in case another UI provides opengl support
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Message-id: 20170606110618.10393-1-kraxel@redhat.com
Diffstat (limited to 'ui/spice-display.c')
-rw-r--r--ui/spice-display.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/spice-display.c b/ui/spice-display.c
index b353445f58..042292cc90 100644
--- a/ui/spice-display.c
+++ b/ui/spice-display.c
@@ -27,6 +27,7 @@
#include "ui/spice-display.h"
static int debug = 0;
+bool spice_opengl;
static void GCC_FMT_ATTR(2, 3) dprint(int level, const char *fmt, ...)
{
@@ -1013,7 +1014,7 @@ static void qemu_spice_display_init_one(QemuConsole *con)
ssd->dcl.ops = &display_listener_ops;
#ifdef HAVE_SPICE_GL
- if (display_opengl) {
+ if (spice_opengl) {
ssd->dcl.ops = &display_listener_gl_ops;
ssd->gl_unblock_bh = qemu_bh_new(qemu_spice_gl_unblock_bh, ssd);
ssd->gl_unblock_timer = timer_new_ms(QEMU_CLOCK_REALTIME,