···22// SPDX-License-Identifier: BSL-1.0
33/*!
44 * @file
55- * @brief Header with just documentation.
55+ * @brief Header with only documentation.
66 * @author Jakob Bornecrantz <jakob@collabora.com>
77 * @ingroup aux_ogl
88 */
+1-2
src/xrt/auxiliary/os/os_hid.h
···7070/*!
7171 * Get a numbered feature report.
7272 *
7373- * If the device doesn't have more than one feature report, just request
7474- * report 0.
7373+ * If the device doesn't have more than one feature report, request report 0.
7574 *
7675 * @public @memberof os_hid_device
7776 */
+4-4
src/xrt/auxiliary/os/os_time.h
···125125/*!
126126 * @brief Sleep the given number of nanoseconds, trying harder to be precise.
127127 *
128128- * On some platforms, there is no way to improve sleep precision easily with some OS-specific state, so we just forward
128128+ * On some platforms, there is no way to improve sleep precision easily with some OS-specific state, so we forward
129129 * to os_nanosleep().
130130 *
131131 * Note that on all platforms, the system scheduler has the final say.
···146146 }
147147 }
148148#endif
149149- // If we fall through from an implementation, or there's no implementation needed for a platform, we just
149149+ // If we fall through from an implementation, or there's no implementation needed for a platform, we
150150 // delegate to the regular os_nanosleep.
151151 os_nanosleep(nsec);
152152}
···155155/*!
156156 * @brief Convert a timespec struct to nanoseconds.
157157 *
158158- * Note that this just does the value combining, no adjustment for epochs is performed.
158158+ * Note that this does the value combining, no adjustment for epochs is performed.
159159 *
160160 * @ingroup aux_os_time_extra
161161 */
···171171/*!
172172 * @brief Convert an nanosecond integer to a timespec struct.
173173 *
174174- * Note that this just does the value splitting, no adjustment for epochs is performed.
174174+ * Note that this does the value splitting, no adjustment for epochs is performed.
175175 * @ingroup aux_os_time_extra
176176 */
177177static inline void
+1-1
src/xrt/auxiliary/vk/vk_bundle_init.c
···605605 res = vk->vkEnumerateDeviceExtensionProperties(physical_device, NULL, &prop_count, props);
606606 vk_check_error_with_free("vkEnumerateDeviceExtensionProperties", res, false, props);
607607608608- // Check above returns on failure.
608608+ // The preceding check returns on failure.
609609 *out_props = props;
610610 *out_prop_count = prop_count;
611611
+3-3
src/xrt/auxiliary/vk/vk_helpers.h
···39394040/*!
4141 * A bundle of Vulkan functions and objects, used by both @ref comp and @ref
4242- * comp_client. Note that they both have different instances of the object and
4343- * as such VkInstance and so on.
4242+ * comp_client. Note that they both have different instances of the object, and
4343+ * thus different VkInstance, etc.
4444 *
4545 * @ingroup aux_vk
4646 */
···871871vk_locked_submit(struct vk_bundle *vk, VkQueue queue, uint32_t count, const VkSubmitInfo *infos, VkFence fence);
872872873873/*!
874874- * Set the image layout via a berrier command, takes the pool lock.
874874+ * Set the image layout using a barrier command, takes the pool lock.
875875 *
876876 * @pre Requires successful call to vk_init_mutex.
877877 *