Lines Matching refs:outPointer
98 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()
108 outPointer.tiltX = 0; in syncTouch()
109 outPointer.tiltY = 0; in syncTouch()
111 outPointer.toolType = inSlot.getToolType(); in syncTouch()
112 if (outPointer.toolType == ToolType::UNKNOWN) { in syncTouch()
113 outPointer.toolType = mTouchButtonAccumulator.getToolType(); in syncTouch()
114 if (outPointer.toolType == ToolType::UNKNOWN) { in syncTouch()
115 outPointer.toolType = ToolType::FINGER; in syncTouch()
117 } else if (outPointer.toolType == ToolType::STYLUS && !mStylusMtToolSeen) { in syncTouch()
130 if (mShouldSimulateStylusWithTouch && outPointer.toolType == ToolType::FINGER) { in syncTouch()
131 outPointer.toolType = ToolType::STYLUS; in syncTouch()
137 outPointer.isHovering = isHovering; in syncTouch()
162 outPointer.id = id; in syncTouch()