2014-11-11 10:21:24 +01:00
|
|
|
#ifndef SDL2_H
|
|
|
|
#define SDL2_H
|
|
|
|
|
|
|
|
struct sdl2_console {
|
|
|
|
DisplayChangeListener dcl;
|
|
|
|
DisplaySurface *surface;
|
|
|
|
SDL_Texture *texture;
|
|
|
|
SDL_Window *real_window;
|
|
|
|
SDL_Renderer *real_renderer;
|
|
|
|
int idx;
|
|
|
|
int last_vm_running; /* per console for caption reasons */
|
|
|
|
int x, y;
|
|
|
|
int hidden;
|
|
|
|
};
|
|
|
|
|
2014-11-11 13:22:49 +01:00
|
|
|
void sdl2_window_create(struct sdl2_console *scon);
|
|
|
|
void sdl2_window_destroy(struct sdl2_console *scon);
|
|
|
|
void sdl2_window_resize(struct sdl2_console *scon);
|
2014-11-12 08:01:27 +01:00
|
|
|
void sdl2_poll_events(struct sdl2_console *scon);
|
2014-11-11 13:22:49 +01:00
|
|
|
|
2014-11-11 10:58:19 +01:00
|
|
|
void sdl2_reset_keys(struct sdl2_console *scon);
|
|
|
|
void sdl2_process_key(struct sdl2_console *scon,
|
|
|
|
SDL_KeyboardEvent *ev);
|
|
|
|
|
2014-11-11 11:09:26 +01:00
|
|
|
void sdl2_2d_update(DisplayChangeListener *dcl,
|
|
|
|
int x, int y, int w, int h);
|
2014-11-11 13:22:49 +01:00
|
|
|
void sdl2_2d_switch(DisplayChangeListener *dcl,
|
|
|
|
DisplaySurface *new_surface);
|
2014-11-12 08:03:34 +01:00
|
|
|
void sdl2_2d_refresh(DisplayChangeListener *dcl);
|
2014-11-11 13:31:08 +01:00
|
|
|
void sdl2_2d_redraw(struct sdl2_console *scon);
|
2015-01-09 09:27:09 +01:00
|
|
|
bool sdl2_2d_check_format(DisplayChangeListener *dcl,
|
|
|
|
pixman_format_code_t format);
|
2014-11-11 11:09:26 +01:00
|
|
|
|
2014-11-11 10:21:24 +01:00
|
|
|
#endif /* SDL2_H */
|