From: Kristian Høgsberg Date: Mon, 3 Nov 2008 16:42:01 +0000 (-0500) Subject: Redraw window in idle handler. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=35370f80735d2a8926aadd081b2ca9a0367cc557;p=profile%2Fivi%2Fwayland.git Redraw window in idle handler. --- diff --git a/window.c b/window.c index 9e419d0..0067488 100644 --- a/window.c +++ b/window.c @@ -74,6 +74,7 @@ struct window { int state; uint32_t name; int fd; + int need_redraw; }; static void * @@ -185,7 +186,7 @@ void event_handler(struct wl_display *display, case WINDOW_RESIZING_LOWER_RIGHT: window->width = window->drag_x + arg1; window->height = window->drag_y + arg2; - draw_window(window); + window->need_redraw = 1; break; } } @@ -268,6 +269,10 @@ int main(int argc, char *argv[]) mask |= WL_CONNECTION_WRITABLE; if (mask) wl_display_iterate(display, mask); + if (window.need_redraw) { + draw_window(&window); + window.need_redraw = 0; + } } return 0;