Home
last modified time | relevance | path

Searched refs:outPointer (Results 1 – 2 of 2) sorted by relevance

/frameworks/native/services/inputflinger/reader/mapper/
DSingleTouchInputMapper.cpp49 RawPointerData::Pointer& outPointer = outState->rawPointerData.pointers[0]; in syncTouch() local
50 outPointer.id = 0; in syncTouch()
51 outPointer.x = mSingleTouchMotionAccumulator.getAbsoluteX(); in syncTouch()
52 outPointer.y = mSingleTouchMotionAccumulator.getAbsoluteY(); in syncTouch()
53 outPointer.pressure = mSingleTouchMotionAccumulator.getAbsolutePressure(); in syncTouch()
54 outPointer.touchMajor = 0; in syncTouch()
55 outPointer.touchMinor = 0; in syncTouch()
56 outPointer.toolMajor = mSingleTouchMotionAccumulator.getAbsoluteToolWidth(); in syncTouch()
57 outPointer.toolMinor = mSingleTouchMotionAccumulator.getAbsoluteToolWidth(); in syncTouch()
58 outPointer.orientation = 0; in syncTouch()
[all …]
DMultiTouchInputMapper.cpp292 RawPointerData::Pointer& outPointer = outState->rawPointerData.pointers[outCount]; in syncTouch() local
293 outPointer.x = inSlot->getX(); in syncTouch()
294 outPointer.y = inSlot->getY(); in syncTouch()
295 outPointer.pressure = inSlot->getPressure(); in syncTouch()
296 outPointer.touchMajor = inSlot->getTouchMajor(); in syncTouch()
297 outPointer.touchMinor = inSlot->getTouchMinor(); in syncTouch()
298 outPointer.toolMajor = inSlot->getToolMajor(); in syncTouch()
299 outPointer.toolMinor = inSlot->getToolMinor(); in syncTouch()
300 outPointer.orientation = inSlot->getOrientation(); in syncTouch()
301 outPointer.distance = inSlot->getDistance(); in syncTouch()
[all …]