comp: Tidy and spell check

This commit is contained in:
Pete Black 2020-04-09 14:49:37 +01:00 committed by Jakob Bornecrantz
parent 6fe02588f9
commit 80d1d29cb5
2 changed files with 4 additions and 3 deletions

View file

@ -56,7 +56,7 @@ struct client_gl_compositor
*/ */
/*! /*!
* Convinence function to convert a xrt_swapchain to a client_gl_swapchain. * Convenience function to convert a xrt_swapchain to a client_gl_swapchain.
*/ */
static inline struct client_gl_swapchain * static inline struct client_gl_swapchain *
client_gl_swapchain(struct xrt_swapchain *xsc) client_gl_swapchain(struct xrt_swapchain *xsc)
@ -65,7 +65,7 @@ client_gl_swapchain(struct xrt_swapchain *xsc)
} }
/*! /*!
* Convinence function to convert a xrt_compositor to a client_gl_compositor. * Convenience function to convert a xrt_compositor to a client_gl_compositor.
*/ */
static inline struct client_gl_compositor * static inline struct client_gl_compositor *
client_gl_compositor(struct xrt_compositor *xc) client_gl_compositor(struct xrt_compositor *xc)

View file

@ -62,6 +62,7 @@
#include "util/u_var.h" #include "util/u_var.h"
/*! /*!
*/ */
static void static void
@ -818,7 +819,7 @@ xrt_gfx_provider_create_fd(struct xrt_device *xdev, bool flip_y)
// Need to select window backend before creating Vulkan, then // Need to select window backend before creating Vulkan, then
// swapchain will initialize the window fully and the swapchain, // swapchain will initialize the window fully and the swapchain,
// and finally the renderer is created which renderers to // and finally the renderer is created which renders to
// window/swapchain. // window/swapchain.
// clang-format off // clang-format off