Skip to content

Commit

Permalink
spice: don't enter opengl mode in case another UI provides opengl sup…
Browse files Browse the repository at this point in the history
…port

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Message-id: 20170606110618.10393-1-kraxel@redhat.com
  • Loading branch information
kraxel committed Jun 14, 2017
1 parent 8f4ea9c commit fe5c44f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions include/ui/spice-display.h
Expand Up @@ -140,6 +140,8 @@ struct SimpleSpiceCursor {
QXLCursor cursor;
};

extern bool spice_opengl;

int qemu_spice_rect_is_empty(const QXLRect* r);
void qemu_spice_rect_union(QXLRect *dest, const QXLRect *r);

Expand Down
1 change: 1 addition & 0 deletions ui/spice-core.c
Expand Up @@ -847,6 +847,7 @@ void qemu_spice_init(void)
exit(1);
}
display_opengl = 1;
spice_opengl = 1;
}
#endif
}
Expand Down
3 changes: 2 additions & 1 deletion ui/spice-display.c
Expand Up @@ -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, ...)
{
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit fe5c44f

Please sign in to comment.