From d8424f782cd3bcc1b3435ca64b39cbc18ddbd032 Mon Sep 17 00:00:00 2001 From: GiWoong Kim Date: Thu, 17 Apr 2014 14:20:22 +0900 Subject: [PATCH] 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 --- tizen/src/maru_sdl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.34.1