The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

xrt: xrt_device_get_hand_tracking return xrt_result_t

Part-of: <https://gitlab.freedesktop.org/monado/monado/-/merge_requests/2357>

+3 -1
+1
doc/changes/xrt/mr.2357.md
··· 1 + xrt: xrt_device_get_hand_tracking return xrt_result_t
+2 -1
src/xrt/include/xrt/xrt_device.h
··· 677 677 * 678 678 * @public @memberof xrt_device 679 679 */ 680 - static inline void 680 + static inline xrt_result_t 681 681 xrt_device_get_hand_tracking(struct xrt_device *xdev, 682 682 enum xrt_input_name name, 683 683 int64_t desired_timestamp_ns, ··· 685 685 int64_t *out_timestamp_ns) 686 686 { 687 687 xdev->get_hand_tracking(xdev, name, desired_timestamp_ns, out_value, out_timestamp_ns); 688 + return XRT_SUCCESS; 688 689 } 689 690 690 691 /*!