Lines Matching refs:pointer
138 for (const Pointer& pointer : target.pointerMap) { in pointerPropertiesResampleable() local
140 auxiliary.pointerMap.find(PointerMap::PointerId{pointer.properties.id}); in pointerPropertiesResampleable()
146 if (pointer.properties.toolType != auxiliaryPointer->properties.toolType) { in pointerPropertiesResampleable()
150 if (!canResampleTool(pointer.properties.toolType)) { in pointerPropertiesResampleable()
153 << ftl::enum_string(pointer.properties.toolType) << " ToolType."; in pointerPropertiesResampleable()
197 for (const Pointer& pointer : pastSample.pointerMap) { in attemptInterpolation() local
199 futureSample.pointerMap.find(PointerMap::PointerId{pointer.properties.id}); in attemptInterpolation()
202 calculateResampledCoords(pointer.coords, futureSamplePointer->coords, alpha); in attemptInterpolation()
203 resampledPointerMap.insert(Pointer{pointer.properties, resampledCoords}); in attemptInterpolation()
269 for (const Pointer& pointer : presentSample.pointerMap) { in attemptExtrapolation() local
271 pastSample.pointerMap.find(PointerMap::PointerId{pointer.properties.id}); in attemptExtrapolation()
274 calculateResampledCoords(pastSamplePointer->coords, pointer.coords, alpha); in attemptExtrapolation()
275 resampledPointerMap.insert(Pointer{pointer.properties, resampledCoords}); in attemptExtrapolation()