Merge "Change InputMessage.motion.pointerSize to a uint32_t."
This commit is contained in:
@@ -1968,7 +1968,7 @@ void InputDispatcher::startDispatchCycleLocked(nsecs_t currentTime,
|
|||||||
xOffset = dispatchEntry->xOffset * scaleFactor;
|
xOffset = dispatchEntry->xOffset * scaleFactor;
|
||||||
yOffset = dispatchEntry->yOffset * scaleFactor;
|
yOffset = dispatchEntry->yOffset * scaleFactor;
|
||||||
if (scaleFactor != 1.0f) {
|
if (scaleFactor != 1.0f) {
|
||||||
for (size_t i = 0; i < motionEntry->pointerCount; i++) {
|
for (uint32_t i = 0; i < motionEntry->pointerCount; i++) {
|
||||||
scaledCoords[i] = motionEntry->pointerCoords[i];
|
scaledCoords[i] = motionEntry->pointerCoords[i];
|
||||||
scaledCoords[i].scale(scaleFactor);
|
scaledCoords[i].scale(scaleFactor);
|
||||||
}
|
}
|
||||||
@@ -1981,7 +1981,7 @@ void InputDispatcher::startDispatchCycleLocked(nsecs_t currentTime,
|
|||||||
|
|
||||||
// We don't want the dispatch target to know.
|
// We don't want the dispatch target to know.
|
||||||
if (dispatchEntry->targetFlags & InputTarget::FLAG_ZERO_COORDS) {
|
if (dispatchEntry->targetFlags & InputTarget::FLAG_ZERO_COORDS) {
|
||||||
for (size_t i = 0; i < motionEntry->pointerCount; i++) {
|
for (uint32_t i = 0; i < motionEntry->pointerCount; i++) {
|
||||||
scaledCoords[i].clear();
|
scaledCoords[i].clear();
|
||||||
}
|
}
|
||||||
usingCoords = scaledCoords;
|
usingCoords = scaledCoords;
|
||||||
|
|||||||
Reference in New Issue
Block a user