]> Git Repo - qemu.git/commitdiff
sdl2: move sdl2_2d_refresh to sdl2-2d.c
authorGerd Hoffmann <[email protected]>
Wed, 12 Nov 2014 07:03:34 +0000 (08:03 +0100)
committerGerd Hoffmann <[email protected]>
Wed, 17 Dec 2014 11:44:01 +0000 (12:44 +0100)
Now that common event handling code is split off, we can move
over sdl_refresh to sdl2-2d.c, and rename it to sdl2_2d_refresh.

Signed-off-by: Gerd Hoffmann <[email protected]>
Reviewed-by: Max Reitz <[email protected]>
include/ui/sdl2.h
ui/sdl2-2d.c
ui/sdl2.c

index bda60f8b93666bcfd290b079d6202107b8a6db78..f56c596e31283f350c721c4c888946e2cb84a7b5 100644 (file)
@@ -26,6 +26,7 @@ void sdl2_2d_update(DisplayChangeListener *dcl,
                     int x, int y, int w, int h);
 void sdl2_2d_switch(DisplayChangeListener *dcl,
                     DisplaySurface *new_surface);
+void sdl2_2d_refresh(DisplayChangeListener *dcl);
 void sdl2_2d_redraw(struct sdl2_console *scon);
 
 #endif /* SDL2_H */
index 40a552c7cbe4bfb6663501d6a89f98c98c364b0a..9264817e765a4d0d276c9c6be8889a9c984b9c49 100644 (file)
@@ -103,6 +103,14 @@ void sdl2_2d_switch(DisplayChangeListener *dcl,
     sdl2_2d_redraw(scon);
 }
 
+void sdl2_2d_refresh(DisplayChangeListener *dcl)
+{
+    struct sdl2_console *scon = container_of(dcl, struct sdl2_console, dcl);
+
+    graphic_hw_update(dcl->con);
+    sdl2_poll_events(scon);
+}
+
 void sdl2_2d_redraw(struct sdl2_console *scon)
 {
     if (!scon->surface) {
index 2fdf8df6085c785d70a86c64a18fdd0d5b8935ce..64ce2065fc2c7b6f5381d13b23712efa7ac23a2d 100644 (file)
--- a/ui/sdl2.c
+++ b/ui/sdl2.c
@@ -594,14 +594,6 @@ void sdl2_poll_events(struct sdl2_console *scon)
     }
 }
 
-static void sdl_refresh(DisplayChangeListener *dcl)
-{
-    struct sdl2_console *scon = container_of(dcl, struct sdl2_console, dcl);
-
-    graphic_hw_update(dcl->con);
-    sdl2_poll_events(scon);
-}
-
 static void sdl_mouse_warp(DisplayChangeListener *dcl,
                            int x, int y, int on)
 {
@@ -667,7 +659,7 @@ static const DisplayChangeListenerOps dcl_2d_ops = {
     .dpy_name          = "sdl2-2d",
     .dpy_gfx_update    = sdl2_2d_update,
     .dpy_gfx_switch    = sdl2_2d_switch,
-    .dpy_refresh       = sdl_refresh,
+    .dpy_refresh       = sdl2_2d_refresh,
     .dpy_mouse_set     = sdl_mouse_warp,
     .dpy_cursor_define = sdl_mouse_define,
 };
This page took 0.028984 seconds and 4 git commands to generate.