mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-01 12:46:12 +00:00
st/oxr: Clean up comments
This commit is contained in:
parent
79b2cf6703
commit
2a2157af66
|
@ -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,
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue