st/oxr: Clean up comments

This commit is contained in:
Ryan Pavlik 2020-06-12 16:51:27 -05:00
parent 79b2cf6703
commit 2a2157af66
2 changed files with 13 additions and 3 deletions

View file

@ -229,7 +229,7 @@ oxr_action_create(struct oxr_logger *log,
/*
*
* "Exproted" helper functions.
* "Exported" helper functions.
*
*/
@ -365,6 +365,10 @@ do_outputs(struct oxr_binding *bind,
return found;
}
/*!
* Delegate to @ref do_outputs or @ref do_inputs depending on whether the action
* is output or input.
*/
static bool
do_io_bindings(struct oxr_binding *b,
struct oxr_action *act,

View file

@ -1292,7 +1292,10 @@ struct oxr_sub_paths
*/
struct oxr_source_set
{
//! Common structure for things referred to by OpenXR handles.
/*!
* While this isn't an OpenXR handle type, we're using the handle base
* here to easily handle ownership and destruction.
*/
struct oxr_handle_base handle;
//! Owning session.
@ -1387,7 +1390,10 @@ struct oxr_source_cache
*/
struct oxr_source
{
//! Common structure for things referred to by OpenXR handles.
/*!
* While this isn't an OpenXR handle type, we're using the handle base
* here to easily handle ownership and destruction.
*/
struct oxr_handle_base handle;
//! Type the action this source was created from is.