The open source OpenXR runtime
0
fork

Configure Feed

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

xrt: Fix doc errors

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

authored by

Rylie Pavlik and committed by
Marge Bot
21897226 2cce3a06

+6 -6
+2 -2
src/xrt/include/xrt/xrt_space.h
··· 464 464 */ 465 465 static inline xrt_result_t 466 466 xrt_space_overseer_set_tracking_origin_offset(struct xrt_space_overseer *xso, 467 - struct xrt_tracking_origin *xt0, 467 + struct xrt_tracking_origin *xto, 468 468 const struct xrt_pose *offset) 469 469 { 470 - return xso->set_tracking_origin_offset(xso, xt0, offset); 470 + return xso->set_tracking_origin_offset(xso, xto, offset); 471 471 } 472 472 473 473 /*!
+4 -4
src/xrt/include/xrt/xrt_system.h
··· 306 306 * Increment the usage count of a feature. 307 307 * When the feature is used for the first time, then the feature will be begun. 308 308 * 309 - * @param xsysd Pointer to self 310 - * @param feature Which feature is being counted. 309 + * @param xsysd Pointer to self 310 + * @param type Which feature is being counted. 311 311 */ 312 312 xrt_result_t (*feature_inc)(struct xrt_system_devices *xsysd, enum xrt_device_feature_type type); 313 313 ··· 315 315 * Decrement the usage count of a feature. 316 316 * When the feature is not used by the current application any more, then the feature will be ended. 317 317 * 318 - * @param xsysd Pointer to self 319 - * @param feature Which feature is being counted. 318 + * @param xsysd Pointer to self 319 + * @param type Which feature is being counted. 320 320 */ 321 321 xrt_result_t (*feature_dec)(struct xrt_system_devices *xsysd, enum xrt_device_feature_type type); 322 322