diff options
author | Henrik Rydberg <rydberg@euromail.se> | 2010-06-15 22:29:37 +0200 |
---|---|---|
committer | Henrik Rydberg <rydberg@euromail.se> | 2010-06-16 02:33:17 +0200 |
commit | 354959d909688ab323695e8a2e641554357ef5c6 (patch) | |
tree | f0c1073c106fa03da8425f9ca5640ad5ae935299 /include | |
parent | 74109dec517245ec9215454226792d72ae0912b0 (diff) | |
download | xorg-input-kobomultitouch-354959d909688ab323695e8a2e641554357ef5c6.tar.gz xorg-input-kobomultitouch-354959d909688ab323695e8a2e641554357ef5c6.tar.bz2 xorg-input-kobomultitouch-354959d909688ab323695e8a2e641554357ef5c6.zip |
Increase event buffer size
The MT devices produce a lot of data. This patch increases the
buffer size to a value empirically found working well for up to
ten fingers.
Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'include')
-rw-r--r-- | include/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h index 09582ce..de79332 100644 --- a/include/common.h +++ b/include/common.h @@ -76,7 +76,7 @@ #define DIM2_FINGER (DIM_FINGER * DIM_FINGER) /* event buffer size (must be a power of two) */ -#define DIM_EVENTS 64 +#define DIM_EVENTS 512 /* year-proof millisecond event time */ typedef __u64 mstime_t; |