10 references to _latestMovePoint
PresentationCore (10)
System\Windows\InterOp\HwndMouseInputProvider.cs (10)
226
mp_in.x =
_latestMovePoint
.x;
227
mp_in.y =
_latestMovePoint
.y;
245
if (mp_out[i].time <
_latestMovePoint
.time ||
246
(mp_out[i].time ==
_latestMovePoint
.time &&
247
mp_out[i].x ==
_latestMovePoint
.x &&
248
mp_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;