The open source OpenXR runtime
0
fork

Configure Feed

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

xrt: Improve docs for ref-counting functions.

+8 -8
+4 -4
src/xrt/include/xrt/xrt_compositor.h
··· 409 409 /*! 410 410 * Update the reference counts on swapchain(s). 411 411 * 412 - * @param dst Pointer to a object reference, if the object reference is 413 - * non-null will decrement it's counter. The reference that 412 + * @param[in,out] dst Pointer to a object reference: if the object reference is 413 + * non-null will decrement its counter. The reference that 414 414 * @p dst points to will be set to @p src. 415 - * @param[in] src Object to be have it's refcount increased @p dst is set to 416 - * this. 415 + * @param[in] src New object for @p dst to refer to (may be null). 416 + * If non-null, will have its refcount increased. 417 417 * @ingroup xrt_iface 418 418 * @relates xrt_swapchain 419 419 */
+4 -4
src/xrt/include/xrt/xrt_frame.h
··· 119 119 /*! 120 120 * Update the reference counts on frame(s). 121 121 * 122 - * @param dst Pointer to a object reference, if the object reference is 123 - * non-null will decrement it's counter. The reference that 122 + * @param[in,out] dst Pointer to a object reference: if the object reference is 123 + * non-null will decrement its counter. The reference that 124 124 * @p dst points to will be set to @p src. 125 - * @param[in] src Object to be have it's refcount increased @p dst is set to 126 - * this. 125 + * @param[in] src New object for @p dst to refer to (may be null). 126 + * If non-null, will have its refcount increased. 127 127 * @ingroup xrt_iface 128 128 * @relates xrt_frame 129 129 */