Delegate OpenXRHelper.xrEnumerateDisplayRefreshRatesFBDelegate
The function delegate declaration of xrEnumerateDisplayRefreshRatesFB.
Namespace: VIVE.OpenXR
Assembly: VIVE.OpenXR.dll
Syntax
public delegate XrResult OpenXRHelper.xrEnumerateDisplayRefreshRatesFBDelegate(XrSession session, uint displayRefreshRateCapacityInput, out uint displayRefreshRateCountOutput, out float displayRefreshRates)
Parameters
Type | Name | Description |
---|---|---|
XrSession | session | The session that enumerates the supported display refresh rates. |
uint | displayRefreshRateCapacityInput | The capacity of the displayRefreshRates, or 0 to retrieve the required capacity. |
uint | displayRefreshRateCountOutput | A pointer to the count of float displayRefreshRates written, or a pointer to the required capacity in the case that displayRefreshRateCapacityInput is insufficient. |
float | displayRefreshRates | A pointer to an array of float display refresh rates, but can be NULL if displayRefreshRateCapacityInput is 0. |
Returns
Type | Description |
---|---|
XrResult | XR_SUCCESS for success. |