Delegate OpenXRHelper.xrEnumerateReferenceSpacesDelegate
The function delegate declaration of xrEnumerateReferenceSpaces.
Namespace: VIVE.OpenXR
Assembly: VIVE.OpenXR.dll
Syntax
public delegate XrResult OpenXRHelper.xrEnumerateReferenceSpacesDelegate(XrSession session, uint spaceCapacityInput, out uint spaceCountOutput, out XrReferenceSpaceType spaces)
Parameters
Type | Name | Description |
---|---|---|
XrSession | session | A handle to an XrSession previously created with xrCreateSession. |
uint | spaceCapacityInput | The capacity of the spaces array, or 0 to indicate a request to retrieve the required capacity. |
uint | spaceCountOutput | A pointer to the count of spaces written, or a pointer to the required capacity in the case that spaceCapacityInput is insufficient. |
XrReferenceSpaceType | spaces | A pointer to an application-allocated array that will be filled with the enumerant of each supported reference space. It can be NULL if spaceCapacityInput is 0. |
Returns
Type | Description |
---|---|
XrResult | XR_SUCCESS for success. |