The open source OpenXR runtime
0
fork

Configure Feed

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

comp: Tidy and spell check

authored by

Pete Black and committed by
Jakob Bornecrantz
80d1d29c 6fe02588

+4 -3
+2 -2
src/xrt/compositor/client/comp_gl_client.h
··· 56 56 */ 57 57 58 58 /*! 59 - * Convinence function to convert a xrt_swapchain to a client_gl_swapchain. 59 + * Convenience function to convert a xrt_swapchain to a client_gl_swapchain. 60 60 */ 61 61 static inline struct client_gl_swapchain * 62 62 client_gl_swapchain(struct xrt_swapchain *xsc) ··· 65 65 } 66 66 67 67 /*! 68 - * Convinence function to convert a xrt_compositor to a client_gl_compositor. 68 + * Convenience function to convert a xrt_compositor to a client_gl_compositor. 69 69 */ 70 70 static inline struct client_gl_compositor * 71 71 client_gl_compositor(struct xrt_compositor *xc)
+2 -1
src/xrt/compositor/main/comp_compositor.c
··· 62 62 63 63 #include "util/u_var.h" 64 64 65 + 65 66 /*! 66 67 */ 67 68 static void ··· 818 819 819 820 // Need to select window backend before creating Vulkan, then 820 821 // swapchain will initialize the window fully and the swapchain, 821 - // and finally the renderer is created which renderers to 822 + // and finally the renderer is created which renders to 822 823 // window/swapchain. 823 824 824 825 // clang-format off