Commit | Line | Data |
---|---|---|
e81b987f | 1 | #include <SDL.h> |
2 | ||
3 | extern SDL_Surface *plat_sdl_screen; | |
4 | extern SDL_Overlay *plat_sdl_overlay; | |
5 | extern int plat_sdl_gl_active; | |
e288d776 | 6 | extern void (*plat_sdl_resize_cb)(int w, int h); |
1f84ba9f | 7 | extern void (*plat_sdl_quit_cb)(void); |
e81b987f | 8 | |
9 | int plat_sdl_init(void); | |
e54719ef | 10 | int plat_sdl_change_video_mode(int w, int h, int force); |
e81b987f | 11 | void plat_sdl_overlay_clear(void); |
12 | void plat_sdl_event_handler(void *event_); | |
13 | void plat_sdl_finish(void); |