search for: real_screen

Displaying 1 result from an estimated 1 matches for "real_screen".

2009 Mar 02
0
[PATCH 4 of 13] DisplayState interface change
...nsole QEMUConsole; typedef struct CharDriverState CharDriverState; diff --git a/sdl.c b/sdl.c --- a/sdl.c +++ b/sdl.c @@ -35,8 +35,9 @@ #include <SDL_opengl.h> #endif -static SDL_Surface *screen; -static SDL_Surface *shared = NULL; +static DisplayChangeListener *dcl; +static SDL_Surface *real_screen; +static SDL_Surface *guest_screen = NULL; static int gui_grab; /* if true, all keyboard/mouse events are grabbed */ static int last_vm_running; static int gui_saved_grab; @@ -52,17 +53,15 @@ static SDL_Cursor *sdl_cursor_hidden; static int absolute_enabled = 0; static int opengl_enabled; -st...