* [Qemu-devel] [PATCH] Extremely slow graphic updates
@ 2009-01-20 23:43 Stefano Stabellini
0 siblings, 0 replies; only message in thread
From: Stefano Stabellini @ 2009-01-20 23:43 UTC (permalink / raw)
To: qemu-devel
Hi all,
as you may be already aware of, the last displaystate interface change
slowed down the qemu monitor and the text vga text mode in general much
more then expected.
The reason for this is that to update the sdl window we are calling
SDL_Flip instead of SDL_UpdateRect.
SDL_Flip is necessary to update the SDL window when using double
buffering, when double buffering is disable it just falls back to
SDL_UpdateRect updating the whole screen.
So in our case we do not use double buffering so we are updating the
whole screen every time for no reason.
This patch fixes that.
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
diff --git a/sdl.c b/sdl.c
index 73396e8..0c4a3e1 100644
--- a/sdl.c
+++ b/sdl.c
@@ -62,7 +62,7 @@ static void sdl_update(DisplayState *ds, int x, int y, int w, int h)
// printf("updating x=%d y=%d w=%d h=%d\n", x, y, w, h);
SDL_BlitSurface(guest_screen, &rec, real_screen, &rec);
- SDL_Flip(real_screen);
+ SDL_UpdateRect(real_screen, x, y, w, h);
}
static void sdl_setdata(DisplayState *ds)
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2009-01-20 23:46 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-20 23:43 [Qemu-devel] [PATCH] Extremely slow graphic updates Stefano Stabellini
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).