qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] win32/sdl: Fix toggle full screen
@ 2010-01-24 21:18 Herve Poussineau
  2010-01-27  0:06 ` Anthony Liguori
  0 siblings, 1 reply; 2+ messages in thread
From: Herve Poussineau @ 2010-01-24 21:18 UTC (permalink / raw)
  To: qemu-devel; +Cc: Herve Poussineau

Toggle full screen on Win32/SDL 1.2.13 was broken by commit
c18a2c360e3100bbd71162cf922dcd8c429a8b71. Re-add the call to
do_sdl_resize() which was removed in this revision
 
Signed-off-by: Herve Poussineau <hpoussin@reactos.org>
---
 sdl.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/sdl.c b/sdl.c
index 034440f..7912c91 100644
--- a/sdl.c
+++ b/sdl.c
@@ -525,6 +525,7 @@ static void sdl_send_mouse_event(int dx, int dy, int dz, int x, int y, int state
 static void toggle_full_screen(DisplayState *ds)
 {
     gui_fullscreen = !gui_fullscreen;
+    do_sdl_resize(real_screen->w, real_screen->h, real_screen->format->BitsPerPixel);
     if (gui_fullscreen) {
         scaling_active = 0;
         gui_saved_grab = gui_grab;
-- 
1.6.0.2.GIT

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-01-27  0:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-24 21:18 [Qemu-devel] [PATCH] win32/sdl: Fix toggle full screen Herve Poussineau
2010-01-27  0:06 ` Anthony Liguori

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).