10 references to _latestMovePoint
PresentationCore (10)
Core\CSharp\System\Windows\Interop\HwndMouseInputProvider.cs (10)
286mp_in.x = _latestMovePoint.x; 287mp_in.y = _latestMovePoint.y; 305if (mp_out[i].time < _latestMovePoint.time || 306(mp_out[i].time == _latestMovePoint.time && 307mp_out[i].x == _latestMovePoint.x && 308mp_out[i].y == _latestMovePoint.y)) 1407_previousMovePoint = _latestMovePoint; 1409_latestMovePoint.x = ((int)currentPosition.X) & 0x0000FFFF; //Ensure that this number will pass through. 1410_latestMovePoint.y = ((int)currentPosition.Y) & 0x0000FFFF; //Ensure that this number will pass through. 1411_latestMovePoint.time = timestamp;