2014-11-11 12:21:24 +03:00
|
|
|
#ifndef SDL2_H
|
|
|
|
#define SDL2_H
|
|
|
|
|
2014-11-19 16:19:49 +03:00
|
|
|
/* Avoid compiler warning because macro is redefined in SDL_syswm.h. */
|
|
|
|
#undef WIN32_LEAN_AND_MEAN
|
|
|
|
|
|
|
|
#include <SDL.h>
|
|
|
|
#include <SDL_syswm.h>
|
|
|
|
|
2014-11-11 12:21:24 +03:00
|
|
|
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 */
|
2014-11-19 16:56:46 +03:00
|
|
|
int x, y, w, h;
|
2014-11-11 12:21:24 +03:00
|
|
|
int hidden;
|
2014-11-11 18:54:45 +03:00
|
|
|
int opengl;
|
|
|
|
int updates;
|
2016-01-12 22:18:24 +03:00
|
|
|
int idle_counter;
|
2014-11-11 18:54:45 +03:00
|
|
|
SDL_GLContext winctx;
|
2014-11-19 16:56:46 +03:00
|
|
|
#ifdef CONFIG_OPENGL
|
2014-11-11 18:54:45 +03:00
|
|
|
ConsoleGLState *gls;
|
2014-11-19 16:56:46 +03:00
|
|
|
GLuint tex_id;
|
|
|
|
GLuint fbo_id;
|
|
|
|
bool y0_top;
|
|
|
|
bool scanout_mode;
|
|
|
|
#endif
|
2014-11-11 12:21:24 +03:00
|
|
|
};
|
|
|
|
|
2014-11-11 15:22:49 +03: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 10:01:27 +03:00
|
|
|
void sdl2_poll_events(struct sdl2_console *scon);
|
2014-11-11 15:22:49 +03:00
|
|
|
|
2014-11-11 12:58:19 +03:00
|
|
|
void sdl2_reset_keys(struct sdl2_console *scon);
|
|
|
|
void sdl2_process_key(struct sdl2_console *scon,
|
|
|
|
SDL_KeyboardEvent *ev);
|
|
|
|
|
2014-11-11 13:09:26 +03:00
|
|
|
void sdl2_2d_update(DisplayChangeListener *dcl,
|
|
|
|
int x, int y, int w, int h);
|
2014-11-11 15:22:49 +03:00
|
|
|
void sdl2_2d_switch(DisplayChangeListener *dcl,
|
|
|
|
DisplaySurface *new_surface);
|
2014-11-12 10:03:34 +03:00
|
|
|
void sdl2_2d_refresh(DisplayChangeListener *dcl);
|
2014-11-11 15:31:08 +03:00
|
|
|
void sdl2_2d_redraw(struct sdl2_console *scon);
|
2015-01-09 11:27:09 +03:00
|
|
|
bool sdl2_2d_check_format(DisplayChangeListener *dcl,
|
|
|
|
pixman_format_code_t format);
|
2014-11-11 13:09:26 +03:00
|
|
|
|
2014-11-11 18:54:45 +03:00
|
|
|
void sdl2_gl_update(DisplayChangeListener *dcl,
|
|
|
|
int x, int y, int w, int h);
|
|
|
|
void sdl2_gl_switch(DisplayChangeListener *dcl,
|
|
|
|
DisplaySurface *new_surface);
|
|
|
|
void sdl2_gl_refresh(DisplayChangeListener *dcl);
|
|
|
|
void sdl2_gl_redraw(struct sdl2_console *scon);
|
|
|
|
|
2014-11-19 16:56:46 +03:00
|
|
|
QEMUGLContext sdl2_gl_create_context(DisplayChangeListener *dcl,
|
|
|
|
QEMUGLParams *params);
|
|
|
|
void sdl2_gl_destroy_context(DisplayChangeListener *dcl, QEMUGLContext ctx);
|
|
|
|
int sdl2_gl_make_context_current(DisplayChangeListener *dcl,
|
|
|
|
QEMUGLContext ctx);
|
|
|
|
QEMUGLContext sdl2_gl_get_current_context(DisplayChangeListener *dcl);
|
|
|
|
|
|
|
|
void sdl2_gl_scanout(DisplayChangeListener *dcl,
|
|
|
|
uint32_t backing_id, bool backing_y_0_top,
|
2016-06-14 16:44:09 +03:00
|
|
|
uint32_t backing_width, uint32_t backing_height,
|
2014-11-19 16:56:46 +03:00
|
|
|
uint32_t x, uint32_t y,
|
|
|
|
uint32_t w, uint32_t h);
|
|
|
|
void sdl2_gl_scanout_flush(DisplayChangeListener *dcl,
|
|
|
|
uint32_t x, uint32_t y, uint32_t w, uint32_t h);
|
|
|
|
|
2014-11-11 12:21:24 +03:00
|
|
|
#endif /* SDL2_H */
|