diff options
| -rw-r--r-- | include/input/Input.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/input/Input.h b/include/input/Input.h index d35354b0f6..cc45aefe9b 100644 --- a/include/input/Input.h +++ b/include/input/Input.h @@ -59,6 +59,12 @@ enum { */ AMOTION_EVENT_FLAG_WINDOW_IS_PARTIALLY_OBSCURED = 0x2, + /** + * This flag indicates that the event has been generated by a gesture generator. It + * provides a hint to the GestureDetector to not apply any touch slop. + */ + AMOTION_EVENT_FLAG_IS_GENERATED_GESTURE = 0x8, + /* Motion event is inconsistent with previously sent motion events. */ AMOTION_EVENT_FLAG_TAINTED = 0x80000000, }; |