From: GiWoong Kim Date: Thu, 17 Apr 2014 05:20:22 +0000 (+0900) Subject: display: do not call qemu_ds_sdl_update directly X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~408^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d8424f782cd3bcc1b3435ca64b39cbc18ddbd032;p=sdk%2Femulator%2Fqemu.git display: do not call qemu_ds_sdl_update directly qemu_update should be synchronized with hw_update. Otherwise, image processing like a brightness compositing can be multiple overlapped on display surface. Change-Id: Icab65289a6f279b3e61b045319cb02383af591e2 Signed-off-by: GiWoong Kim --- diff --git a/tizen/src/maru_sdl.c b/tizen/src/maru_sdl.c index ab4d121b38..7405981bc9 100644 --- a/tizen/src/maru_sdl.c +++ b/tizen/src/maru_sdl.c @@ -691,7 +691,7 @@ static void *run_qemu_update(void *arg) static void maru_sdl_update_bh(void *opaque) { - qemu_ds_sdl_update(NULL, 0, 0, 0, 0); + graphic_hw_invalidate(NULL); } static void maru_sdl_resize_bh(void *opaque)