C Specification

The XrEventDataStopColocationDiscoveryCompleteMETA structure is defined as:

// Provided by XR_META_colocation_discovery
typedef struct XrEventDataStopColocationDiscoveryCompleteMETA {
    XrStructureType       type;
    const void*           next;
    XrAsyncRequestIdFB    requestId;
    XrResult              result;
} XrEventDataStopColocationDiscoveryCompleteMETA;

Members

Member Descriptions
  • type is the XrStructureType of this structure.

  • next is NULL or a pointer to the next structure in a structure chain. No such structures are defined in core OpenXR.

  • requestId is an XrAsyncRequestIdFB that identifies which request this event is in response to. The runtime must ensure this value matches a requestId returned during an xrStopColocationDiscoveryMETA call.

  • result is an XrResult representing the discovery process result. The valid result values are: XR_SUCCESS and XR_ERROR_RUNTIME_FAILURE. If the application does not already have an active colocation discovery, the runtime must return XR_SUCCESS.

Description

This event conveys the results of the asynchronous operation started by xrStopColocationDiscoveryMETA.

Valid Usage (Implicit)

See Also

Document Notes

For more information, see the OpenXR Specification

This page is extracted from the OpenXR Specification. Fixes and changes should be made to the Specification, not directly.

Copyright 2014-2025 The Khronos Group Inc.