Lines Matching refs:touches
120 lv_indev_touch_data_t touches[10]; member
904 app->touch_obj->input.touches[i].point.x = wl_fixed_to_int(x_w); in touch_handle_down()
905 app->touch_obj->input.touches[i].point.y = wl_fixed_to_int(y_w); in touch_handle_down()
906 app->touch_obj->input.touches[i].id = id; in touch_handle_down()
907 app->touch_obj->input.touches[i].timestamp = time; in touch_handle_down()
908 app->touch_obj->input.touches[i].state = LV_INDEV_STATE_PRESSED; in touch_handle_down()
949 app->touch_obj->input.touches[i].point.x = 0; in touch_handle_up()
950 app->touch_obj->input.touches[i].point.y = 0; in touch_handle_up()
951 app->touch_obj->input.touches[i].id = id; in touch_handle_up()
952 app->touch_obj->input.touches[i].timestamp = time; in touch_handle_up()
953 app->touch_obj->input.touches[i].state = LV_INDEV_STATE_RELEASED; in touch_handle_up()
1002 touch = &app->touch_obj->input.touches[0]; in touch_handle_motion()
1015 app->touch_obj->input.touches[i].point.x = wl_fixed_to_int(x_w); in touch_handle_motion()
1016 app->touch_obj->input.touches[i].point.y = wl_fixed_to_int(y_w); in touch_handle_motion()
1017 app->touch_obj->input.touches[i].id = id; in touch_handle_motion()
1018 app->touch_obj->input.touches[i].timestamp = time; in touch_handle_motion()
1019 app->touch_obj->input.touches[i].state = LV_INDEV_STATE_PRESSED; in touch_handle_motion()
2396 lv_indev_gesture_detect_pinch(recognizer, &window->body->input.touches[0], in _lv_wayland_touch_read()