From ac605a3e0f8a12d69d2a4b3428ff82df50a111ff Mon Sep 17 00:00:00 2001 From: "giwoong.kim" Date: Thu, 27 Dec 2012 13:58:58 +0900 Subject: [PATCH] touch: increase the queue size of touch event increase the host queue size of touch event for slow machine. Signed-off-by: GiWoong Kim --- tizen/src/hw/maru_virtio_touchscreen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tizen/src/hw/maru_virtio_touchscreen.c b/tizen/src/hw/maru_virtio_touchscreen.c index 06ad4dc..9c08fb7 100644 --- a/tizen/src/hw/maru_virtio_touchscreen.c +++ b/tizen/src/hw/maru_virtio_touchscreen.c @@ -50,7 +50,7 @@ typedef struct TouchEventEntry { } TouchEventEntry; /* the maximum number of touch event that can be put into a queue */ -#define MAX_TOUCH_EVENT_CNT 64 +#define MAX_TOUCH_EVENT_CNT 256 static TouchEventEntry _events_buf[MAX_TOUCH_EVENT_CNT]; static QTAILQ_HEAD(, TouchEventEntry) events_queue = -- 2.7.4