diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2014-11-11 13:22:49 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2014-12-17 12:44:01 +0100 |
commit | 2c3056f182e16038c8b0663f68b3b5105899fb75 (patch) | |
tree | c72478b52d6ff25cfeaa6ddd6f03727a2cfb51f0 /include | |
parent | 46522a82236ea0cf9011b89896d2d8f8ddaf2443 (diff) |
sdl2: move sdl_switch to sdl2-2d.c
Move sdl_switch to sdl2-2d.c file, rename to sdl2_2d_switch.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/ui/sdl2.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/ui/sdl2.h b/include/ui/sdl2.h index 84c27f03fa..fd6bfdd46d 100644 --- a/include/ui/sdl2.h +++ b/include/ui/sdl2.h @@ -13,11 +13,17 @@ struct sdl2_console { int hidden; }; +void sdl2_window_create(struct sdl2_console *scon); +void sdl2_window_destroy(struct sdl2_console *scon); +void sdl2_window_resize(struct sdl2_console *scon); + void sdl2_reset_keys(struct sdl2_console *scon); void sdl2_process_key(struct sdl2_console *scon, SDL_KeyboardEvent *ev); void sdl2_2d_update(DisplayChangeListener *dcl, int x, int y, int w, int h); +void sdl2_2d_switch(DisplayChangeListener *dcl, + DisplaySurface *new_surface); #endif /* SDL2_H */ |