10 references to _latestMovePoint
PresentationCore (10)
System\Windows\InterOp\HwndMouseInputProvider.cs (10)
231
mp_in.x =
_latestMovePoint
.x;
232
mp_in.y =
_latestMovePoint
.y;
250
if (mp_out[i].time <
_latestMovePoint
.time ||
251
(mp_out[i].time ==
_latestMovePoint
.time &&
252
mp_out[i].x ==
_latestMovePoint
.x &&
253
mp_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;