touch: increase the queue size of touch event
authorgiwoong.kim <giwoong.kim@samsung.com>
Thu, 27 Dec 2012 04:58:58 +0000 (13:58 +0900)
committergiwoong.kim <giwoong.kim@samsung.com>
Thu, 27 Dec 2012 05:04:02 +0000 (14:04 +0900)
increase the host queue size of touch event for
slow machine.

Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
tizen/src/hw/maru_virtio_touchscreen.c

index 06ad4dc..9c08fb7 100644 (file)
@@ -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 =