summaryrefslogtreecommitdiffstats
path: root/ui/spice-display.c
diff options
context:
space:
mode:
authorGerd Hoffmann2015-01-09 09:31:58 +0100
committerGerd Hoffmann2015-01-19 13:33:26 +0100
commit0002a51889101a818c1b8328b2a95f284caa030f (patch)
treebf30a637e622df80380e27cf5d8a2ff4b47f38cb /ui/spice-display.c
parentui/vnc: Support shared surface for most pixman formats (diff)
downloadqemu-0002a51889101a818c1b8328b2a95f284caa030f.tar.gz
qemu-0002a51889101a818c1b8328b2a95f284caa030f.tar.xz
qemu-0002a51889101a818c1b8328b2a95f284caa030f.zip
ui/spice: Support shared surface for most pixman formats
Just hook up qemu_pixman_check_format. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'ui/spice-display.c')
-rw-r--r--ui/spice-display.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/ui/spice-display.c b/ui/spice-display.c
index d2e379379f..8c872129de 100644
--- a/ui/spice-display.c
+++ b/ui/spice-display.c
@@ -760,12 +760,13 @@ static void display_mouse_define(DisplayChangeListener *dcl,
}
static const DisplayChangeListenerOps display_listener_ops = {
- .dpy_name = "spice",
- .dpy_gfx_update = display_update,
- .dpy_gfx_switch = display_switch,
- .dpy_refresh = display_refresh,
- .dpy_mouse_set = display_mouse_set,
- .dpy_cursor_define = display_mouse_define,
+ .dpy_name = "spice",
+ .dpy_gfx_update = display_update,
+ .dpy_gfx_switch = display_switch,
+ .dpy_gfx_check_format = qemu_pixman_check_format,
+ .dpy_refresh = display_refresh,
+ .dpy_mouse_set = display_mouse_set,
+ .dpy_cursor_define = display_mouse_define,
};
static void qemu_spice_display_init_one(QemuConsole *con)