10 references to _latestMovePoint
PresentationCore (10)
System\Windows\InterOp\HwndMouseInputProvider.cs (10)
227
mp_in.x =
_latestMovePoint
.x;
228
mp_in.y =
_latestMovePoint
.y;
246
if (mp_out[i].time <
_latestMovePoint
.time ||
247
(mp_out[i].time ==
_latestMovePoint
.time &&
248
mp_out[i].x ==
_latestMovePoint
.x &&
249
mp_out[i].y ==
_latestMovePoint
.y))
1447
_previousMovePoint =
_latestMovePoint
;
1449
_latestMovePoint
.x = ((int)currentPosition.X) & 0x0000FFFF; //Ensure that this number will pass through.
1450
_latestMovePoint
.y = ((int)currentPosition.Y) & 0x0000FFFF; //Ensure that this number will pass through.
1451
_latestMovePoint
.time = timestamp;