10 references to _latestMovePoint
PresentationCore (10)
System\Windows\InterOp\HwndMouseInputProvider.cs (10)
226mp_in.x = _latestMovePoint.x; 227mp_in.y = _latestMovePoint.y; 245if (mp_out[i].time < _latestMovePoint.time || 246(mp_out[i].time == _latestMovePoint.time && 247mp_out[i].x == _latestMovePoint.x && 248mp_out[i].y == _latestMovePoint.y)) 1443_previousMovePoint = _latestMovePoint; 1445_latestMovePoint.x = ((int)currentPosition.X) & 0x0000FFFF; //Ensure that this number will pass through. 1446_latestMovePoint.y = ((int)currentPosition.Y) & 0x0000FFFF; //Ensure that this number will pass through. 1447_latestMovePoint.time = timestamp;