Name String
XR_ANDROID_depth_texture 
Extension Type
Instance extension
Registered Extension Number
703
Revision
1
Extension and Version Dependencies
Last Modified Date
2024-09-11
IP Status
No known IP claims.
Contributors
Sushant Kulkarni, Google
Cairn Overturf, Google
Spencer Quin, Google
Levana Chen, Google
Overview
This extension allows the application to request depth maps of the real-world environment around the headset and query supported depth resolutions at creation.
This extension is intended to expose raw and smooth depth for occlusion, hit tests and other specific tasks that make use of accurate scene geometry, for example, counterfeit face detection.
Inspect system capability
The XrSystemDepthTrackingPropertiesANDROID structure is defined as:
typedef struct XrSystemDepthTrackingPropertiesANDROID {
    XrStructureType    type;
    const void*        next;
    XrBool32           supportsDepthTracking;
} XrSystemDepthTrackingPropertiesANDROID;
Member Descriptions
- typeis the XrStructureType of this structure.
- nextis- NULLor a pointer to the next structure in a structure chain. No such structures are defined in core OpenXR or this extension.
- supportsDepthTrackingis an- XrBool32indicating if current system supports depth tracking.
An application can inspect whether the system is capable of depth tracking by extending the XrSystemProperties with XrSystemDepthTrackingPropertiesANDROID structure when calling xrGetSystemProperties.
Valid Usage (Implicit)
- The XR_ANDROID_depth_textureextension must be enabled prior to using XrSystemDepthTrackingPropertiesANDROID
- typemust be- XR_TYPE_SYSTEM_DEPTH_TRACKING_PROPERTIES_ANDROID
- nextmust be- NULLor a valid pointer to the next structure in a structure chain
Query depth resolutions
The xrEnumerateDepthResolutionsANDROID function is defined as:
XrResult xrEnumerateDepthResolutionsANDROID(
    XrSession                                   session,
    uint32_t                                    resolutionCapacityInput,
    uint32_t*                                   resolutionCountOutput,
    XrDepthCameraResolutionANDROID*             resolutions);
Parameter Descriptions
- sessionis the XrSession that enumerates the supported depth resolutions.
- resolutionCapacityInputis the capacity of the- resolutions, or 0 to retrieve the required capacity.
- resolutionCountOutputis a pointer to the count of- uint64_t- resolutionswritten, or a pointer to the required capacity in the case that- resolutionCapacityInputis insufficient.
- resolutionsis a pointer to an array of XrDepthCameraResolutionANDROID, but can be- NULLif- resolutionCapacityInputis 0.
- See the Buffer Size Parameters section for a detailed
description of retrieving the required resolutionssize.
xrEnumerateDepthResolutionsANDROID enumerates the depth resolutions supported by the current session. Depth resolutions should be in order from highest to lowest runtime preference. The application should use the highest preference that it supports for optimal performance and quality.
Valid Usage (Implicit)
- The XR_ANDROID_depth_textureextension must be enabled prior to calling xrEnumerateDepthResolutionsANDROID
- sessionmust be a valid XrSession handle
- resolutionCountOutputmust be a pointer to a- uint32_tvalue
- If resolutionCapacityInputis not 0,resolutionsmust be a pointer to an array ofresolutionCapacityInputXrDepthCameraResolutionANDROID values
Return Codes
- XR_SUCCESS
- XR_SESSION_LOSS_PENDING
- XR_ERROR_FUNCTION_UNSUPPORTED
- XR_ERROR_VALIDATION_FAILURE
- XR_ERROR_RUNTIME_FAILURE
- XR_ERROR_HANDLE_INVALID
- XR_ERROR_INSTANCE_LOST
- XR_ERROR_SESSION_LOST
- XR_ERROR_SIZE_INSUFFICIENT
The XrDepthCameraResolutionANDROID enum describes the supported depth resolutions when creating an XrDepthSwapchainANDROID.
typedef enum XrDepthCameraResolutionANDROID {
    XR_DEPTH_CAMERA_RESOLUTION_80x80_ANDROID = 0,
    XR_DEPTH_CAMERA_RESOLUTION_160x160_ANDROID = 1,
    XR_DEPTH_CAMERA_RESOLUTION_320x320_ANDROID = 2
    } XrDepthCameraResolutionANDROID;
Enumerant Descriptions
- XR_DEPTH_CAMERA_RESOLUTION_80x80_ANDROID— The resolution of the depth and confidence images is 80x80.
- XR_DEPTH_CAMERA_RESOLUTION_160x160_ANDROID— The resolution of the depth and confidence images is 160x160.
- XR_DEPTH_CAMERA_RESOLUTION_320x320_ANDROID— The resolution of the depth and confidence images is 320x320.
Create a depth swapchain
XR_DEFINE_HANDLE(XrDepthSwapchainANDROID)
An XrDepthSwapchainANDROID is a depth swapchain handle.
The xrCreateDepthSwapchainANDROID function is defined as:
XrResult xrCreateDepthSwapchainANDROID(
    XrSession                                   session,
    const XrDepthSwapchainCreateInfoANDROID*    createInfo,
    XrDepthSwapchainANDROID*                    swapchain);
Parameter Descriptions
- sessionis the XrSession that creates the depth swapchain.
- createInfois a pointer to an XrDepthSwapchainCreateInfoANDROID structure containing parameters to be used to create the swapchain.
- swapchainis a pointer to a handle in which the created XrDepthSwapchainANDROID is returned.
The application can use xrCreateDepthSwapchainANDROID function to create a depth swapchain which manages both depth and confidence images.
The returned depth swapchain handle may be subsequently used in API calls. The XrDepthSwapchainANDROID handle must be eventually freed using the xrDestroyDepthSwapchainANDROID function.
Valid Usage (Implicit)
- The XR_ANDROID_depth_textureextension must be enabled prior to calling xrCreateDepthSwapchainANDROID
- sessionmust be a valid XrSession handle
- createInfomust be a pointer to a valid XrDepthSwapchainCreateInfoANDROID structure
- swapchainmust be a pointer to an XrDepthSwapchainANDROID handle
Return Codes
- XR_SUCCESS
- XR_SESSION_LOSS_PENDING
- XR_ERROR_FUNCTION_UNSUPPORTED
- XR_ERROR_RUNTIME_FAILURE
- XR_ERROR_INSTANCE_LOST
- XR_ERROR_SESSION_LOST
- XR_ERROR_OUT_OF_MEMORY
- XR_ERROR_HANDLE_INVALID
- XR_ERROR_LIMIT_REACHED
The XrDepthSwapchainCreateInfoANDROID structure is defined as:
typedef struct XrDepthSwapchainCreateInfoANDROID {
    XrStructureType                       type;
    const void*                           next;
    XrDepthCameraResolutionANDROID        resolution;
    XrDepthSwapchainCreateFlagsANDROID    createFlags;
} XrDepthSwapchainCreateInfoANDROID;
Member Descriptions
- typeis the XrStructureType of this structure.
- nextis- NULLor a pointer to the next structure in a structure chain. No such structures are defined in core OpenXR or this extension.
- resolutionis the XrDepthCameraResolutionANDROID that the depth and confidence textures should be created in.
- createFlagsis one or more XrDepthSwapchainCreateFlagsANDROID.
The XrDepthSwapchainCreateInfoANDROID structure provides creation options for the XrDepthSwapchainANDROID when passed to xrCreateDepthSwapchainANDROID.
Valid Usage (Implicit)
- The XR_ANDROID_depth_textureextension must be enabled prior to using XrDepthSwapchainCreateInfoANDROID
- typemust be- XR_TYPE_DEPTH_SWAPCHAIN_CREATE_INFO_ANDROID
- nextmust be- NULLor a valid pointer to the next structure in a structure chain
- resolutionmust be a valid XrDepthCameraResolutionANDROID value
- createFlagsmust be a valid combination of XrDepthSwapchainCreateFlagBitsANDROID values
- createFlagsmust not be 0
The XrDepthSwapchainCreateFlagsANDROID specifies creation options for XrDepthSwapchainANDROID.
typedef XrFlags64 XrDepthSwapchainCreateFlagsANDROID;
Valid bits for XrDepthSwapchainCreateFlagsANDROID are defined by XrDepthSwapchainCreateFlagBitsANDROID, which is specified as:
// Flag bits for XrDepthSwapchainCreateFlagsANDROID
static const XrDepthSwapchainCreateFlagsANDROID XR_DEPTH_SWAPCHAIN_CREATE_SMOOTH_DEPTH_IMAGE_BIT_ANDROID = 0x00000001;
static const XrDepthSwapchainCreateFlagsANDROID XR_DEPTH_SWAPCHAIN_CREATE_SMOOTH_CONFIDENCE_IMAGE_BIT_ANDROID = 0x00000002;
static const XrDepthSwapchainCreateFlagsANDROID XR_DEPTH_SWAPCHAIN_CREATE_RAW_DEPTH_IMAGE_BIT_ANDROID = 0x00000004;
static const XrDepthSwapchainCreateFlagsANDROID XR_DEPTH_SWAPCHAIN_CREATE_RAW_CONFIDENCE_IMAGE_BIT_ANDROID = 0x00000008;
The xrDestroyDepthSwapchainANDROID function is defined as:
XrResult xrDestroyDepthSwapchainANDROID(
    XrDepthSwapchainANDROID                     swapchain);
Parameter Descriptions
- swapchainis an XrDepthSwapchainANDROID handle previously created by- xrCreateDepthSwapchainANDROID.
The xrDestroyDepthSwapchainANDROID function destroys the depth swapchain.
Valid Usage (Implicit)
- The XR_ANDROID_depth_textureextension must be enabled prior to calling xrDestroyDepthSwapchainANDROID
- swapchainmust be a valid XrDepthSwapchainANDROID handle
Thread Safety
- Access to swapchain, and any child handles, must be externally synchronized
Return Codes
- XR_SUCCESS
- XR_ERROR_FUNCTION_UNSUPPORTED
- XR_ERROR_HANDLE_INVALID
Access depth textures
The xrEnumerateDepthSwapchainImagesANDROID function is defined as:
XrResult xrEnumerateDepthSwapchainImagesANDROID(
    XrDepthSwapchainANDROID                     depthSwapchain,
    uint32_t                                    depthImageCapacityInput,
    uint32_t*                                   depthImageCountOutput,
    XrDepthSwapchainImageANDROID*               depthImages);
Parameter Descriptions
- depthSwapchainis the XrDepthSwapchainANDROID to get images from.
- depthImageCapacityInputis the capacity of the- depthImagesarray, or 0 to indicate a request to retrieve the required capacity.
- depthImageCountOutputis a pointer to the count of- depthImageswritten, or a pointer to the required capacity in the case that- depthImageCapacityInputis insufficient.
- depthImagesis a pointer to an array of XrDepthSwapchainImageANDROID structures. It can be- NULLif- depthImageCapacityInputis 0.
- See the Buffer Size Parameters section for a detailed
description of retrieving the required depthImagessize.
xrEnumerateDepthSwapchainImagesANDROID fills an array of XrDepthSwapchainImageANDROID structures. The resources will be constant and valid for the lifetime of the XrDepthSwapchainANDROID. This function behaves analogously to xrEnumerateSwapchainImages.
Valid Usage (Implicit)
- The XR_ANDROID_depth_textureextension must be enabled prior to calling xrEnumerateDepthSwapchainImagesANDROID
- depthSwapchainmust be a valid XrDepthSwapchainANDROID handle
- depthImageCountOutputmust be a pointer to a- uint32_tvalue
- If depthImageCapacityInputis not 0,depthImagesmust be a pointer to an array ofdepthImageCapacityInputXrDepthSwapchainImageANDROID structures
Return Codes
- XR_SUCCESS
- XR_SESSION_LOSS_PENDING
- XR_ERROR_FUNCTION_UNSUPPORTED
- XR_ERROR_VALIDATION_FAILURE
- XR_ERROR_RUNTIME_FAILURE
- XR_ERROR_HANDLE_INVALID
- XR_ERROR_INSTANCE_LOST
- XR_ERROR_SESSION_LOST
- XR_ERROR_SIZE_INSUFFICIENT
The XrDepthSwapchainImageANDROID structure is defined as:
typedef struct XrDepthSwapchainImageANDROID {
    XrStructureType    type;
    void*              next;
    const float*       rawDepthImage;
    const uint8_t*     rawDepthConfidenceImage;
    const float*       smoothDepthImage;
    const uint8_t*     smoothDepthConfidenceImage;
} XrDepthSwapchainImageANDROID;
Member Descriptions
- typeis the XrStructureType of this structure.
- nextis- NULLor a pointer to the next structure in a structure chain. No such structures are defined in core OpenXR or this extension.
- rawDepthImageis- NULLor the pointer to raw depth images for both left and right views. The values have units of meters. Special values:- 0.0indicates an invalid or empty depth pixel in the raw depth,- Infindicates known depth that is effectively infinitely far away,
- rawDepthConfidenceImageis- NULLor the pointer to raw depth confidence images for both left and right views.
- smoothDepthImageis- NULLor the pointer to smooth depth images for both left and right views. The values have units of meters. Special values:- 0.0indicates an invalid or empty depth pixel in the smooth depth,- Infindicates known depth that is effectively infinitely far away.
- smoothDepthConfidenceImageis- NULLor the pointer to smooth depth confidence images for both left and right views.
XrDepthSwapchainImageANDROID represents the depth images from a readable XrDepthSwapchainANDROID, allocated as described in the XrDepthSwapchainCreateInfoANDROID::resolution and XrDepthSwapchainCreateInfoANDROID::createFlags while calling xrCreateDepthSwapchainANDROID. For each depth image:
- Image values are laid out in memory in row-major order, with no padding between rows.
- The first value is the top left and the last value is the bottom right.
- The size of the memory pointed to is determined by the value of
xrEnumerateDepthSwapchainImagesANDROID and set by
XrDepthSwapchainCreateInfoANDROID::resolution while calling
xrCreateDepthSwapchainANDROID. For example, if resolutionisXR_DEPTH_CAMERA_RESOLUTION_160x160_ANDROID, the depth images will have size2*160*160*sizeof(float).
- The value of rawDepthImagemust beNULLif XrDepthSwapchainCreateInfoANDROID::createFlags has not setXR_DEPTH_SWAPCHAIN_CREATE_RAW_DEPTH_IMAGE_BIT_ANDROID.
- The value of rawDepthConfidenceImagemust beNULLif XrDepthSwapchainCreateInfoANDROID::createFlags has not setXR_DEPTH_SWAPCHAIN_CREATE_RAW_CONFIDENCE_IMAGE_BIT_ANDROID.
- The value of smoothDepthImagemust beNULLif XrDepthSwapchainCreateInfoANDROID::createFlags has not setXR_DEPTH_SWAPCHAIN_CREATE_SMOOTH_DEPTH_IMAGE_BIT_ANDROID.
- The value of smoothDepthConfidenceImagemust beNULLif XrDepthSwapchainCreateInfoANDROID::createFlags has not setXR_DEPTH_SWAPCHAIN_CREATE_SMOOTH_CONFIDENCE_IMAGE_BIT_ANDROID.
Valid Usage (Implicit)
- The XR_ANDROID_depth_textureextension must be enabled prior to using XrDepthSwapchainImageANDROID
- typemust be- XR_TYPE_DEPTH_SWAPCHAIN_IMAGE_ANDROID
- nextmust be- NULLor a valid pointer to the next structure in a structure chain
The xrAcquireDepthSwapchainImagesANDROID function is defined as:
XrResult xrAcquireDepthSwapchainImagesANDROID(
    XrDepthSwapchainANDROID                     depthSwapchain,
    const XrDepthAcquireInfoANDROID*            acquireInfo,
    XrDepthAcquireResultANDROID*                acquireResult);
Parameter Descriptions
- depthSwapchainis an XrDepthSwapchainANDROID handle for the depth image.
- acquireInfois an XrDepthAcquireInfoANDROID containing information about how to acquire the depth image.
- acquireResultis the returned XrDepthAcquireResultANDROID containing information about the acquired depth image.
Applications can use xrAcquireDepthSwapchainImagesANDROID function to acquire the latest available swapchain image index, such as XrDepthAcquireResultANDROID::acquiredIndex, into the XrDepthSwapchainImageANDROID array enumerated by xrEnumerateDepthSwapchainImagesANDROID. The returned XrDepthAcquireResultANDROID also contains other information such as the field of view and pose that are necessary to interpret the depth data. It is safe to read from the acquired slot in the image array until the next call to xrAcquireDepthSwapchainImagesANDROID.
There must be no more than one call to xrAcquireDepthSwapchainImagesANDROID between any pair of corresponding xrBeginFrame and xrEndFrame calls in a session.
Valid Usage (Implicit)
- The XR_ANDROID_depth_textureextension must be enabled prior to calling xrAcquireDepthSwapchainImagesANDROID
- depthSwapchainmust be a valid XrDepthSwapchainANDROID handle
- acquireInfomust be a pointer to a valid XrDepthAcquireInfoANDROID structure
- acquireResultmust be a pointer to an XrDepthAcquireResultANDROID structure
Return Codes
- XR_SUCCESS
- XR_SESSION_LOSS_PENDING
- XR_ERROR_FUNCTION_UNSUPPORTED
- XR_ERROR_VALIDATION_FAILURE
- XR_ERROR_RUNTIME_FAILURE
- XR_ERROR_HANDLE_INVALID
- XR_ERROR_INSTANCE_LOST
- XR_ERROR_SESSION_LOST
- XR_ERROR_DEPTH_NOT_AVAILABLE_ANDROID
- XR_ERROR_CALL_ORDER_INVALID
- XR_ERROR_LIMIT_REACHED
- XR_ERROR_TIME_INVALID
The XrDepthAcquireInfoANDROID structure is defined as:
typedef struct XrDepthAcquireInfoANDROID {
    XrStructureType    type;
    const void*        next;
    XrSpace            space;
    XrTime             displayTime;
} XrDepthAcquireInfoANDROID;
Member Descriptions
- typeis the XrStructureType of this structure.
- nextis- NULLor a pointer to the next structure in a structure chain. No such structures are defined in core OpenXR or this extension.
- spaceis an XrSpace defining the reference frame of the returned pose in XrDepthAcquireResultANDROID::views.
- displayTimeis an- XrTimespecifying the time used to compute the pose for the returned pose in XrDepthAcquireResultANDROID::views. Applications should pass their predicted display time for the current frame.
Valid Usage (Implicit)
- The XR_ANDROID_depth_textureextension must be enabled prior to using XrDepthAcquireInfoANDROID
- typemust be- XR_TYPE_DEPTH_ACQUIRE_INFO_ANDROID
- nextmust be- NULLor a valid pointer to the next structure in a structure chain
- spacemust be a valid XrSpace handle
The XrDepthAcquireResultANDROID structure is defined as:
typedef struct XrDepthAcquireResultANDROID {
    XrStructureType       type;
    const void*           next;
    uint32_t              acquiredIndex;
    XrTime                exposureTimestamp;
    XrDepthViewANDROID    views[2];
} XrDepthAcquireResultANDROID;
Member Descriptions
- typeis the XrStructureType of this structure.
- nextis- NULLor a pointer to the next structure in a structure chain. No such structures are defined in core OpenXR or this extension.
- acquiredIndexis the index of the acquired texture into the XrDepthSwapchainImageANDROID array enumerated by xrEnumerateDepthSwapchainImagesANDROID.
- exposureTimestampis the- XrTimespecifying the time at which the depth map was captured.
- viewsis an array of two XrDepthViewANDROID, one for each eye, where index 0 is left eye and index 1 is the right eye.
Valid Usage (Implicit)
- The XR_ANDROID_depth_textureextension must be enabled prior to using XrDepthAcquireResultANDROID
- typemust be- XR_TYPE_DEPTH_ACQUIRE_RESULT_ANDROID
- nextmust be- NULLor a valid pointer to the next structure in a structure chain
- Any given element of viewsmust be a valid XrDepthViewANDROID structure
The XrDepthViewANDROID structure is defined as:
typedef struct XrDepthViewANDROID {
    XrStructureType    type;
    const void*        next;
    XrFovf             fov;
    XrPosef            pose;
} XrDepthViewANDROID;
Member Descriptions
- typeis the XrStructureType of this structure.
- nextis- NULLor a pointer to the next structure in a structure chain. No such structures are defined in core OpenXR or this extension.
- fovis an XrFovf specifying the field of view used to generate this view. The view is never flipped horizontally nor vertically.
- poseis an XrPosef specifying the pose from which the depth map was rendered. The reference frame is specified in XrDepthAcquireInfoANDROID.
Valid Usage (Implicit)
- The XR_ANDROID_depth_textureextension must be enabled prior to using XrDepthViewANDROID
- typemust be- XR_TYPE_DEPTH_VIEW_ANDROID
- nextmust be- NULLor a valid pointer to the next structure in a structure chain
Example code for depth tracking
The following example code demonstrates how to acquire depth images.
XrInstance instance;  // previously initialized
XrSystemId systemId;  // previously initialized
XrSession session; // previously initialized
XrSpace stageSpace; // space created for XR_REFERENCE_SPACE_TYPE_STAGE.
// The function pointers are previously initialized using xrGetInstanceProcAddr.
PFN_xrCreateDepthSwapchainANDROID xrCreateDepthSwapchainANDROID; // previously initialized
PFN_xrDestroyDepthSwapchainANDROID xrDestroyDepthSwapchainANDROID; // previously initialized
PFN_xrEnumerateDepthSwapchainImagesANDROID xrEnumerateDepthSwapchainImagesANDROID; // previously initialized
PFN_xrEnumerateDepthResolutionsANDROID xrEnumerateDepthResolutionsANDROID; // previously initialized
PFN_xrAcquireDepthSwapchainImagesANDROID xrAcquireDepthSwapchainImagesANDROID; // previously initialized
// Inspect system capability
XrSystemProperties properties{XR_TYPE_SYSTEM_PROPERTIES};
XrSystemDepthTrackingPropertiesANDROID depthTrackingProperties{XR_TYPE_SYSTEM_DEPTH_TRACKING_PROPERTIES_ANDROID};
properties.next = &depthTrackingProperties;
CHK_XR(xrGetSystemProperties(instance, systemId, &properties));
if (!depthTrackingProperties.supportsDepthTracking) {
  // depth tracking is not supported.
  return;
}
// Query the supported depth resolution.
XrDepthCameraResolutionANDROID supportedDepthResolution;
uint32_t supportedResolutionCount = 0;
CHK_XR(xrEnumerateDepthResolutionsANDROID(
    session, 1, &supportedResolutionCount, &supportedDepthResolution));
// Define metadata to access the raw and smooth depth along with confidences.
XrDepthSwapchainCreateInfoANDROID swapchainCreateInfo = {
  .type = XR_TYPE_DEPTH_SWAPCHAIN_CREATE_INFO_ANDROID,
  .next = nullptr,
  .createFlags =
    XR_DEPTH_SWAPCHAIN_CREATE_SMOOTH_DEPTH_IMAGE_BIT_ANDROID |
    XR_DEPTH_SWAPCHAIN_CREATE_SMOOTH_CONFIDENCE_IMAGE_BIT_ANDROID |
    XR_DEPTH_SWAPCHAIN_CREATE_RAW_DEPTH_IMAGE_BIT_ANDROID |
    XR_DEPTH_SWAPCHAIN_CREATE_RAW_CONFIDENCE_IMAGE_BIT_ANDROID,
  // Use the resolution supported by the runtime.
  .resolution = supportedDepthResolution,
};
XrDepthSwapchainANDROID depthSwapchain;
CHK_XR(xrCreateDepthSwapchainANDROID(
    session, &swapchainCreateInfo, &depthSwapchain));
// Enumerate depth images.
uint32_t imageCountOutput = 0;
CHK_XR(xrEnumerateDepthSwapchainImagesANDROID(
    depthSwapchain, 0, &imageCountOutput, nullptr));
std::vector<XrDepthSwapchainImageANDROID> depthImages(imageCountOutput);
for (int i = 0; i < imageCountOutput; i++) {
  depthImages[i].type = XR_TYPE_DEPTH_SWAPCHAIN_IMAGE_ANDROID;
}
CHK_XR(xrEnumerateDepthSwapchainImagesANDROID(
  depthSwapchain, imageCountOutput, &imageCountOutput, depthImages.data()));
while (1) {
    // ...
    // For every frame in frame loop
    // ...
    XrFrameState frameState;  // previously returned from xrWaitFrame
    const XrTime time = frameState.predictedDisplayTime;
    XrDepthAcquireInfoANDROID acquireInfo = {
        .type = XR_TYPE_DEPTH_ACQUIRE_INFO_ANDROID,
        .space = stageSpace,
        .displayTime = time};
    XrDepthAcquireResultANDROID acquireResult = {
        .type = XR_TYPE_DEPTH_ACQUIRE_RESULT_ANDROID,
    };
    CHK_XR(xrAcquireDepthImagesANDROID(
        depthSwapchain, &acquireInfo, &acquireResult));
    // Each value in a depth image corresponds to a point in the real world.
    // The sample code in this section shows how to find the stageSpace position
    // of the point corresponding to a particular value in the depth image.
    // For this sample code, assume we are using a right handed coordinate system
    // with +X to the right, +Y up and -Z forward.
    XrDepthSwapchainImageANDROID *image =
        &depthImages[acquireResult.acquireIndex];
    // Assume supported resolution is XR_DEPTH_CAMERA_RESOLUTION_160x160_ANDROID.
    const int imageResolution = 160;
    int imageY = // value in [0, imageResolution)
    int imageX = // value in [0, imageResolution)
    // Get depth value from left eye.
    // A right depth value would be obtained with the following expression:
    // depthR = image->rawDepthImage[imageResolution*imageResolution+i*imageResolution+j]
    float depthL = image->rawDepthImage[imageY*imageResolution + imageX];
    XrDepthViewANDROID viewL = acquireResult.views[0];
    float tanL = tanf(viewL.fov.angleLeft);
    float tanR = tanf(viewL.fov.angleRight);
    float tanU = tanf(viewL.fov.angleUp);
    float tanD = tanf(viewL.fov.angleDown);
    float s = (imageX + 0.5f) / (float)imageResolution;
    float t = (imageY + 0.5f) / (float)imageResolution;
    // Calculate the depth camera space position of the point
    // corresponding to this depth value.
    XrVector3f posInCameraSpace;
    posInCameraSpace.z = -depthL;
    posInCameraSpace.x = (tanL + (tanR - tanL)*s)*depthL;
    posInCameraSpace.y = (tanB + (tanU - tanB)*t)*depthL;
    XrPosef depthCameraPoseL = viewL.pose;
    // Transform posInCameraSpace by depthCameraPoseL
    // ...
    // Finish frame loop
    // ...
}
New Object Types
New Enum Constants
XrObjectType enumeration is extended with:
- XR_OBJECT_TYPE_DEPTH_SWAPCHAIN_ANDROID
XrResult enumeration is extended with:
- XR_ERROR_DEPTH_NOT_AVAILABLE_ANDROID
XrStructureType enumeration is extended with:
- XR_TYPE_DEPTH_SWAPCHAIN_CREATE_INFO_ANDROID
- XR_TYPE_DEPTH_VIEW_ANDROID
- XR_TYPE_DEPTH_ACQUIRE_INFO_ANDROID
- XR_TYPE_DEPTH_ACQUIRE_RESULT_ANDROID
- XR_TYPE_SYSTEM_DEPTH_TRACKING_PROPERTIES_ANDROID
- XR_TYPE_DEPTH_SWAPCHAIN_IMAGE_ANDROID
New Enums
New Structures
- XrDepthSwapchainCreateInfoANDROID
- XrDepthSwapchainImageANDROID
- XrDepthAcquireInfoANDROID
- XrDepthViewANDROID
- XrDepthAcquireResultANDROID
- XrSystemDepthTrackingPropertiesANDROID
New Functions
- xrCreateDepthSwapchainANDROID
- xrDestroyDepthSwapchainANDROID
- xrEnumerateDepthSwapchainImagesANDROID
- xrEnumerateDepthResolutionsANDROID
- xrAcquireDepthSwapchainImagesANDROID
Issues
Version History
- Revision 1, 2024-09-09 (Levana Chen)
- Initial extension description
 
OpenXR™ and the OpenXR logo are trademarks owned by The Khronos Group Inc. and are registered as a trademark in China, the European Union, Japan and the United Kingdom.
