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:
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:
+ true
:
+ 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:
1
.
0
.
-