Home
last modified time | relevance | path

Searched refs:finger_cnt (Results 1 – 2 of 2) sorted by relevance

/lvgl-latest/src/indev/
Dlv_indev_gesture.c109 recognizer->info->finger_cnt == 0) { in lv_indev_recognizer_is_active()
234 … i, touch->id, touch->state, touch->point.x, touch->point.y, r->info->finger_cnt); in lv_indev_gesture_detect_pinch()
237 LV_LOG_TRACE("Current finger count: %d state: %d", r->info->finger_cnt, r->state); in lv_indev_gesture_detect_pinch()
240 if(r->info->finger_cnt == 2) { in lv_indev_gesture_detect_pinch()
441 if(g->finger_cnt == LV_GESTURE_MAX_POINTS) { in process_touch_event()
447 motion = &g->motions[g->finger_cnt]; in process_touch_event()
455 g->finger_cnt++; in process_touch_event()
460 if(motion_idx == g->finger_cnt - 1) { in process_touch_event()
471 len = (g->finger_cnt - 1) - motion_idx; in process_touch_event()
476 g->motions[g->finger_cnt - 1].finger = -1; in process_touch_event()
[all …]
Dlv_indev_gesture_private.h68 uint8_t finger_cnt; /* Current number of contact points */ member