summaryrefslogtreecommitdiffstats
path: root/include/ui
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2011-01-25 18:22:50 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2011-01-25 18:22:50 -0800
commitab2f09603079534b53499864a403d0ba16aad13b (patch)
treebda82420b709f75417061242d20227ec89732ff7 /include/ui
parente1ec077497b4d88abf9d3aab68449325d7e2b87b (diff)
parent12b2dc90883ef4f930a17907acdef3677b0598a5 (diff)
downloadframeworks_base-ab2f09603079534b53499864a403d0ba16aad13b.zip
frameworks_base-ab2f09603079534b53499864a403d0ba16aad13b.tar.gz
frameworks_base-ab2f09603079534b53499864a403d0ba16aad13b.tar.bz2
am 12b2dc90: am b1e0a870: Merge "Fix crashes caused by some input devices." into honeycomb
* commit '12b2dc90883ef4f930a17907acdef3677b0598a5': Fix crashes caused by some input devices.
Diffstat (limited to 'include/ui')
-rw-r--r--include/ui/Input.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/ui/Input.h b/include/ui/Input.h
index 30b45f7..2012fcc 100644
--- a/include/ui/Input.h
+++ b/include/ui/Input.h
@@ -50,8 +50,10 @@ enum {
/*
* Maximum number of pointers supported per motion event.
* Smallest number of pointers is 1.
+ * (We want at least 10 but some touch controllers obstensibly configured for 10 pointers
+ * will occasionally emit 11. There is not much harm making this constant bigger.)
*/
-#define MAX_POINTERS 10
+#define MAX_POINTERS 16
/*
* Maximum pointer id value supported in a motion event.