The open source OpenXR runtime
0
fork

Configure Feed

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

xrt: make xrt_device_update_inputs return xrt_result_t

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

+3 -1
+1
doc/changes/xrt/mr.2246.md
··· 1 + Change: `xrt_device_update_inputs` returns `xrt_result_t`
+2 -1
src/xrt/include/xrt/xrt_device.h
··· 561 561 * 562 562 * @public @memberof xrt_device 563 563 */ 564 - static inline void 564 + static inline xrt_result_t 565 565 xrt_device_update_inputs(struct xrt_device *xdev) 566 566 { 567 567 xdev->update_inputs(xdev); 568 + return XRT_SUCCESS; 568 569 } 569 570 570 571 /*!