diff --git a/index.bs b/index.bs index 63af114..a05899f 100755 --- a/index.bs +++ b/index.bs @@ -185,23 +185,24 @@ The following table summarizes the ways various data formats can be consumed: {{XRDepthDataFormat/"luminance-alpha"}} [=GLenum/LUMINANCE_ALPHA=] - 2 times 8 bit + 2 times 8 bit Interpret {{XRCPUDepthInformation/data}} as {{Uint16Array}} Inspect Luminance and Alpha channels to reassemble single value. {{XRDepthDataFormat/"float32"}} [=GLenum/R32F=] - 32 bit + 32 bit Interpret {{XRCPUDepthInformation/data}} as {{Float32Array}} Inspect Red channel and use the value. {{XRDepthDataFormat/"unsigned-short"}} [=GLenum/R16UI=] - 16 bit + 16 bit Interpret {{XRCPUDepthInformation/data}} as {{Uint16Array}} - Inspect Red channel and use the value. + Inspect Red channel and use the + value. @@ -213,6 +214,7 @@ Session configuration {#session-configuration} dictionary XRDepthStateInit { required sequence usagePreference; required sequence dataFormatPreference; + boolean matchDepthView = true; }; @@ -220,6 +222,10 @@ The {{XRDepthStateInit/usagePreference}} is an ordered sequence of {{XRDepthUsag The {{XRDepthStateInit/dataFormatPreference}} is an ordered sequence of {{XRDepthDataFormat}}s, used to describe the desired depth sensing data format for the session. +The {{XRDepthStateInit/matchDepthView}} requests that {{XRDepthInformation/view}} of the depth information must be in sync with the {{XRView}}. If this is true, the {{XRSystem}} SHOULD return depth information that reflects the current frame. If this is false, the {{XRSystem}} MAY return depth information that was captured at an earlier point in time. + +NOTE: If {{XRDepthStateInit/matchDepthView}} is false, the author should do the reprojection using the [=XRDepthInformation/view=] from {{XRDepthInformation}}. + The {{XRSessionInit}} dictionary is expanded by adding new {{XRSessionInit/depthSensing}} key. The key is optional in {{XRSessionInit}}, but it MUST be provided when [=depth-sensing=] is included in either {{XRSessionInit/requiredFeatures}} or {{XRSessionInit/optionalFeatures}}. @@ -320,7 +331,11 @@ Note: if the applications intend to use the resulting depth buffer for texturing The {{XRDepthInformation/rawValueToMeters}} attribute contains the scale factor by which the raw depth values from a [=XRDepthInformation/depth buffer=] must be multiplied in order to get the depth in meters. -Each {{XRDepthInformation}} has an associated view that stores {{XRView}} from which the depth information instance was created. +The {{XRDepthInformation/depthNear}}, {{XRDepthInformation/depthFar}} and optional {{XRDepthInformation/view}} attribute contain the near and far field and the {{XRView}} respectively that were active when the {{XRSystem}} calculated the {{XRDepthInformation}}. This attribute MAY be used by experiences to better align with the real world. If the {{XRDepthInformation/view}} is not provided, the user MUST assume it is the same as the one from the current {{XRFrame}}'s {{XRViewerPose}}. + +The {{XRDepthInformation/isValid}} attribute is set to true if the {{XRSystem}} was able to generate depth information for the current frame. It is set to false otherwise. + +Each {{XRDepthInformation}} has an associated view that reflects the {{XRView}} from which the depth information instance was created. Each {{XRDepthInformation}} has an associated depth buffer that contains depth buffer data. Different {{XRDepthInformation}}s may store objects of different concrete types in the depth buffer. @@ -500,18 +515,28 @@ When {{XRWebGLBinding/getDepthInformation(view)}} method is invoked on a {{XRWeb In order to create a WebGL depth information instance given {{XRFrame}} |frame| and {{XRView}} |view|, the user agent MUST run the following steps: 1. Let |result| be a new instance of {{XRWebGLDepthInformation}}. - 1. Let |time| be |frame|'s [=XRFrame/time=]. + 1. Initialize |time| as follows: +
+
If the {{XRSession}} was created with {{XRDepthStateInit/matchDepthView}} set to true: +
Let |time| be |frame|'s [=XRFrame/time=]. +
Otherwise +
Let |time| be time that the |device| captured the depth information. +
1. Let |session| be |frame|'s {{XRFrame/session}}. 1. Let |device| be the |session|'s [=XRSession/XR device=]. 1. Let |nativeDepthInformation| be a result of querying |device|'s [=native depth sensing=] for the depth information valid as of |time|, for specified |view|, taking into account |session|'s {{XRSession/depthUsage}} and {{XRSession/depthDataFormat}}. - 1. If |nativeDepthInformation| is null, return null and abort these steps. - 1. If the depth buffer present in |nativeDepthInformation| meets user agent's criteria to [=block access=] to the depth data, return null and abort these steps. + 1. Initialize |result|'s {{XRDepthInformation/isValid}} to false. + 1. If |nativeDepthInformation| is null, return |result| and abort these steps. + 1. If the depth buffer present in |nativeDepthInformation| meets user agent's criteria to [=block access=] to the depth data, return |result| and abort these steps. 1. If the depth buffer present in |nativeDepthInformation| meets user agent's criteria to [=limit the amount of information=] available in depth buffer, adjust the depth buffer accordingly. + 1. Set |result|'s {{XRDepthInformation/isValid}} to true. 1. Initialize |result|'s {{XRDepthInformation/width}} to the width of the depth buffer returned in |nativeDepthInformation|. 1. Initialize |result|'s {{XRDepthInformation/height}} to the height of the depth buffer returned in |nativeDepthInformation|. 1. Initialize |result|'s {{XRDepthInformation/normDepthBufferFromNormView}} to a new {{XRRigidTransform}}, based on |nativeDepthInformation|'s [=depth coordinates transformation matrix=]. 1. Initialize |result|'s {{XRWebGLDepthInformation/texture}} to an [=opaque texture=] containing the depth buffer returned in |nativeDepthInformation|. - 1. Initialize |result|'s [=XRDepthInformation/view=] to |view|. + 1. Initialize |result|'s {{XRDepthInformation/view}} to the {{XRView}} captured at |time|. + 1. Initialize |result|'s {{XRDepthInformation/depthNear}} to the |device|'s [=native depth sensing=] near clip plane at |time|. + 1. Initialize |result|'s {{XRDepthInformation/depthFar}} to the |device|'s [=native depth sensing=] far clip plane at |time|. 1. Initialize |result|'s {{XRWebGLDepthInformation/textureType}} as follows:
If the |result|'s {{XRWebGLDepthInformation/texture}} was created with a textureType of [=XRTextureType/texture-array=]: @@ -527,7 +552,6 @@ In order to create a WebGL depth information instance given {{XRFrame
Initialize |result|'s {{XRWebGLDepthInformation/imageIndex}} to 1.
Otherwise
Initialize |result|'s {{XRWebGLDepthInformation/imageIndex}} to 0. -
1. Return |result|.