Skip to content

Commit

Permalink
sdl2: move sdl2_2d_refresh to sdl2-2d.c
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
kraxel committed Dec 17, 2014
1 parent 63ed490 commit 62959ff
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions include/ui/sdl2.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
8 changes: 8 additions & 0 deletions ui/sdl2-2d.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
10 changes: 1 addition & 9 deletions ui/sdl2.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down Expand Up @@ -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,
};
Expand Down

0 comments on commit 62959ff

Please sign in to comment.