10 references to _latestMovePoint
PresentationCore (10)
System\Windows\InterOp\HwndMouseInputProvider.cs (10)
231mp_in.x = _latestMovePoint.x; 232mp_in.y = _latestMovePoint.y; 250if (mp_out[i].time < _latestMovePoint.time || 251(mp_out[i].time == _latestMovePoint.time && 252mp_out[i].x == _latestMovePoint.x && 253mp_out[i].y == _latestMovePoint.y)) 1451_previousMovePoint = _latestMovePoint; 1453_latestMovePoint.x = ((int)currentPosition.X) & 0x0000FFFF; //Ensure that this number will pass through. 1454_latestMovePoint.y = ((int)currentPosition.Y) & 0x0000FFFF; //Ensure that this number will pass through. 1455_latestMovePoint.time = timestamp;