TouchMove点不重新采样,up点不参与计算抛滑速率

Signed-off-by: longruoluo <long.liu@huawei.com>
Change-Id: I07926c294a7d2b7c7ad25fbfb07784f253e8a257
This commit is contained in:
longruoluo 2024-11-14 15:38:43 +08:00
parent 6e6335dcb2
commit 3d41aaff61
2 changed files with 3 additions and 2 deletions

View File

@ -291,12 +291,13 @@ void PanRecognizer::HandleTouchUpEvent(const TouchEvent& event)
// In CrossPlatform, MOVE point has sampled, but the UP point is original coordinate,
// and participating in the Velocity calculation may cause abnormal rates
if (currentFingers_ == fingers_ && !SystemProperties::IsNeedResampleTouchPoints()) {
if (currentFingers_ == fingers_ && SystemProperties::IsNeedResampleTouchPoints()) {
UpdateTouchPointInVelocityTracker(event);
} else if (currentFingers_ > fingers_) {
panVelocity_.Reset(event.id);
UpdateTouchPointInVelocityTracker(event);
}
UpdateTouchEventInfo(event);
if ((currentFingers_ <= fingers_) &&

View File

@ -3337,7 +3337,7 @@ void PipelineContext::FlushTouchEvents()
if (focusWindowId_.has_value()) {
needInterpolation = false;
}
if (needInterpolation) {
if (needInterpolation && SystemProperties::IsNeedResampleTouchPoints()) {
auto targetTimeStamp = resampleTimeStamp_;
for (const auto& idIter : idToTouchPoints) {
auto stamp =