Home
last modified time | relevance | path

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

/frameworks/native/services/inputflinger/reader/mapper/
DSingleTouchInputMapper.cpp51 RawPointerData::Pointer& outPointer = outState->rawPointerData.pointers[0]; in syncTouch() local
52 outPointer.id = 0; in syncTouch()
53 outPointer.x = mSingleTouchMotionAccumulator.getAbsoluteX(); in syncTouch()
54 outPointer.y = mSingleTouchMotionAccumulator.getAbsoluteY(); in syncTouch()
55 outPointer.pressure = mSingleTouchMotionAccumulator.getAbsolutePressure(); in syncTouch()
56 outPointer.touchMajor = 0; in syncTouch()
57 outPointer.touchMinor = 0; in syncTouch()
58 outPointer.toolMajor = mSingleTouchMotionAccumulator.getAbsoluteToolWidth(); in syncTouch()
59 outPointer.toolMinor = mSingleTouchMotionAccumulator.getAbsoluteToolWidth(); in syncTouch()
60 outPointer.orientation = 0; in syncTouch()
[all …]
DMultiTouchInputMapper.cpp98 RawPointerData::Pointer& outPointer = outState->rawPointerData.pointers[outCount]; in syncTouch() local
99 outPointer.x = inSlot.getX(); in syncTouch()
100 outPointer.y = inSlot.getY(); in syncTouch()
101 outPointer.pressure = inSlot.getPressure(); in syncTouch()
102 outPointer.touchMajor = inSlot.getTouchMajor(); in syncTouch()
103 outPointer.touchMinor = inSlot.getTouchMinor(); in syncTouch()
104 outPointer.toolMajor = inSlot.getToolMajor(); in syncTouch()
105 outPointer.toolMinor = inSlot.getToolMinor(); in syncTouch()
106 outPointer.orientation = inSlot.getOrientation(); in syncTouch()
107 outPointer.distance = inSlot.getDistance(); in syncTouch()
[all …]