Back to Content

XRProjectionLayer: ignoreDepthValues property

files/en-us/web/api/xrprojectionlayer/ignoredepthvalues/index.md

latest954 B
Original Source

{{APIRef("WebXR Device API")}}{{SeeCompatTable}}

The read-only ignoreDepthValues property of the {{domxref("XRProjectionLayer")}} interface is a boolean indicating if the XR compositor is not making use of depth buffer values when rendering the layer.

Value

A boolean. true indicates the XR compositor doesn't make use of depth buffer values; false indicates the content of the depth buffer will be used when rendering the layer.

Examples

Ignoring depth values

If the depthFormat option is 0 when creating a projection layer, the ignoreDepthValues property will be true. See also {{domxref("XRWebGLBinding.createProjectionLayer()")}}.

js
let glProjectionLayer = xrGLBinding.createProjectionLayer({
  depthFormat: 0,
});

glProjectionLayer.ignoreDepthValues; // true

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also

  • {{domxref("XRWebGLBinding.createProjectionLayer()")}}