diff options
author | Jeff Brown <jeffbrown@google.com> | 2010-07-16 15:01:56 -0700 |
---|---|---|
committer | Jeff Brown <jeffbrown@google.com> | 2010-07-16 15:11:24 -0700 |
commit | 3cf1c9b8443f8db238b0214a97defc09b7e6fc98 (patch) | |
tree | 89da23ff5f44522616cd82e6f9bfd641343e697c /include | |
parent | 127c21f74a5f4a6a5e434180440375055e114d3e (diff) | |
download | frameworks_native-3cf1c9b8443f8db238b0214a97defc09b7e6fc98.zip frameworks_native-3cf1c9b8443f8db238b0214a97defc09b7e6fc98.tar.gz frameworks_native-3cf1c9b8443f8db238b0214a97defc09b7e6fc98.tar.bz2 |
Fix individual pointer id up/down reporting.
Fix a minor threading bug in InputManager dump.
Change-Id: Ic2eecf7df5a8dc9f40561fcb03ebe58a2c073778
Diffstat (limited to 'include')
-rw-r--r-- | include/ui/InputReader.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/ui/InputReader.h b/include/ui/InputReader.h index 85a0084..14bea65 100644 --- a/include/ui/InputReader.h +++ b/include/ui/InputReader.h @@ -286,7 +286,8 @@ private: int32_t keyEventAction, int32_t keyEventFlags); void dispatchTouches(nsecs_t when, InputDevice* device, uint32_t policyFlags); void dispatchTouch(nsecs_t when, InputDevice* device, uint32_t policyFlags, - InputDevice::TouchData* touch, BitSet32 idBits, int32_t motionEventAction); + InputDevice::TouchData* touch, BitSet32 idBits, uint32_t changedId, + int32_t motionEventAction); // display void resetDisplayProperties(); |