10 references to _latestMovePoint
PresentationCore (10)
Core\CSharp\System\Windows\Interop\HwndMouseInputProvider.cs (10)
286
mp_in.x =
_latestMovePoint
.x;
287
mp_in.y =
_latestMovePoint
.y;
305
if (mp_out[i].time <
_latestMovePoint
.time ||
306
(mp_out[i].time ==
_latestMovePoint
.time &&
307
mp_out[i].x ==
_latestMovePoint
.x &&
308
mp_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;