2014-11-11 10:21:24 +01:00
|
|
|
#ifndef SDL2_H
|
|
|
|
#define SDL2_H
|
|
|
|
|
2014-11-19 14:19:49 +01:00
|
|
|
/* Avoid compiler warning because macro is redefined in SDL_syswm.h. */
|
|
|
|
#undef WIN32_LEAN_AND_MEAN
|
|
|
|
|
|
|
|
#include <SDL.h>
|
2022-01-05 14:49:39 +01:00
|
|
|
|
|
|
|
/* with Alpine / muslc SDL headers pull in directfb headers
|
|
|
|
* which in turn trigger warning about redundant decls for
|
|
|
|
* direct_waitqueue_deinit.
|
|
|
|
*/
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wredundant-decls"
|
|
|
|
|
2014-11-19 14:19:49 +01:00
|
|
|
#include <SDL_syswm.h>
|
2022-01-05 14:49:39 +01:00
|
|
|
|
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
|
2019-01-10 13:00:47 +01:00
|
|
|
#ifdef CONFIG_SDL_IMAGE
|
|
|
|
# include <SDL_image.h>
|
|
|
|
#endif
|
2014-11-19 14:19:49 +01:00
|
|
|
|
2019-01-22 10:28:09 +01:00
|
|
|
#include "ui/kbd-state.h"
|
2017-06-14 10:41:48 +02:00
|
|
|
#ifdef CONFIG_OPENGL
|
|
|
|
# include "ui/egl-helpers.h"
|
|
|
|
#endif
|
|
|
|
|
2014-11-11 10:21:24 +01:00
|
|
|
struct sdl2_console {
|
2021-10-09 21:48:46 +02:00
|
|
|
DisplayGLCtx dgc;
|
2014-11-11 10:21:24 +01:00
|
|
|
DisplayChangeListener dcl;
|
|
|
|
DisplaySurface *surface;
|
2018-04-13 15:58:41 +02:00
|
|
|
DisplayOptions *opts;
|
2014-11-11 10:21:24 +01:00
|
|
|
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 14:56:46 +01:00
|
|
|
int x, y, w, h;
|
2014-11-11 10:21:24 +01:00
|
|
|
int hidden;
|
2014-11-11 16:54:45 +01:00
|
|
|
int opengl;
|
|
|
|
int updates;
|
2016-01-12 20:18:24 +01:00
|
|
|
int idle_counter;
|
2017-11-17 12:22:58 +01:00
|
|
|
int ignore_hotkeys;
|
2014-11-11 16:54:45 +01:00
|
|
|
SDL_GLContext winctx;
|
2019-01-22 10:28:09 +01:00
|
|
|
QKbdState *kbd;
|
2014-11-19 14:56:46 +01:00
|
|
|
#ifdef CONFIG_OPENGL
|
2017-10-10 15:54:49 +02:00
|
|
|
QemuGLShader *gls;
|
2017-06-14 10:41:48 +02:00
|
|
|
egl_fb guest_fb;
|
|
|
|
egl_fb win_fb;
|
2014-11-19 14:56:46 +01:00
|
|
|
bool y0_top;
|
|
|
|
bool scanout_mode;
|
|
|
|
#endif
|
2014-11-11 10:21:24 +01:00
|
|
|
};
|
|
|
|
|
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_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 16:54:45 +01: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);
|
|
|
|
|
2021-10-09 21:48:46 +02:00
|
|
|
QEMUGLContext sdl2_gl_create_context(DisplayGLCtx *dgc,
|
2014-11-19 14:56:46 +01:00
|
|
|
QEMUGLParams *params);
|
2021-10-09 21:48:46 +02:00
|
|
|
void sdl2_gl_destroy_context(DisplayGLCtx *dgc, QEMUGLContext ctx);
|
|
|
|
int sdl2_gl_make_context_current(DisplayGLCtx *dgc,
|
2014-11-19 14:56:46 +01:00
|
|
|
QEMUGLContext ctx);
|
|
|
|
|
2017-02-21 10:37:20 +01:00
|
|
|
void sdl2_gl_scanout_disable(DisplayChangeListener *dcl);
|
2017-02-21 10:37:16 +01:00
|
|
|
void sdl2_gl_scanout_texture(DisplayChangeListener *dcl,
|
|
|
|
uint32_t backing_id,
|
|
|
|
bool backing_y_0_top,
|
|
|
|
uint32_t backing_width,
|
|
|
|
uint32_t backing_height,
|
|
|
|
uint32_t x, uint32_t y,
|
|
|
|
uint32_t w, uint32_t h);
|
2014-11-19 14:56:46 +01:00
|
|
|
void sdl2_gl_scanout_flush(DisplayChangeListener *dcl,
|
|
|
|
uint32_t x, uint32_t y, uint32_t w, uint32_t h);
|
|
|
|
|
2014-11-11 10:21:24 +01:00
|
|
|
#endif /* SDL2_H */
|