| 84 | } |
| 85 | |
| 86 | void TouchEvent::PrepareTouches(std::array<Touch, 2> const & previousTouches) |
| 87 | { |
| 88 | if (GetValidTouchesCount(m_touches) == 2 && GetValidTouchesCount(previousTouches) > 0) |
| 89 | { |
| 90 | if (previousTouches[0].m_id == m_touches[1].m_id) |
| 91 | Swap(); |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | void TouchEvent::SetFirstMaskedPointer(uint8_t firstMask) |
| 96 | { |
no test coverage detected