diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2015-01-09 09:27:09 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2015-01-19 13:33:26 +0100 |
commit | 877417d9ae6846bea4744b198131a5fe5117d7a5 (patch) | |
tree | fc448d083e2ae57d7d3b7d8e361a2b052fabd2f3 /ui/sdl2.c | |
parent | 7dd93291cad743e83e972a323a5775ff5a954bd5 (diff) | |
download | qemu-877417d9ae6846bea4744b198131a5fe5117d7a5.tar.gz qemu-877417d9ae6846bea4744b198131a5fe5117d7a5.tar.bz2 qemu-877417d9ae6846bea4744b198131a5fe5117d7a5.zip |
ui/sdl2: Support shared surface for more pixman formats
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'ui/sdl2.c')
-rw-r--r-- | ui/sdl2.c | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -668,12 +668,13 @@ static void sdl_cleanup(void) } static const DisplayChangeListenerOps dcl_2d_ops = { - .dpy_name = "sdl2-2d", - .dpy_gfx_update = sdl2_2d_update, - .dpy_gfx_switch = sdl2_2d_switch, - .dpy_refresh = sdl2_2d_refresh, - .dpy_mouse_set = sdl_mouse_warp, - .dpy_cursor_define = sdl_mouse_define, + .dpy_name = "sdl2-2d", + .dpy_gfx_update = sdl2_2d_update, + .dpy_gfx_switch = sdl2_2d_switch, + .dpy_gfx_check_format = sdl2_2d_check_format, + .dpy_refresh = sdl2_2d_refresh, + .dpy_mouse_set = sdl_mouse_warp, + .dpy_cursor_define = sdl_mouse_define, }; void sdl_display_init(DisplayState *ds, int full_screen, int no_frame) |