Limited availability
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The getDepthInformation()
method of the XRWebGLBinding
interface returns an XRWebGLDepthInformation
object containing WebGL depth information.
getDepthInformation(view)
Parameters
view
An XRView
object obtained from a viewer pose.
An XRWebGLDepthInformation
object.
NotSupportedError
DOMException
Thrown if "depth-sensing"
is not in the list of enabled features for this XRSession
.
InvalidStateError
DOMException
Thrown if the XRFrame
is not active nor animated. Obtaining depth information is only valid within the requestAnimationFrame()
callback.
InvalidStateError
DOMException
Thrown if the session's depthUsage
is not "gpu-optimized"
.
const canvasElement = document.querySelector(".output-canvas");
const gl = canvasElement.getContext("webgl");
await gl.makeXRCompatible();
// Make sure to request a session with depth-sensing enabled
const session = navigator.xr.requestSession("immersive-ar", {
requiredFeatures: ["depth-sensing"],
depthSensing: {
usagePreference: ["gpu-optimized"],
formatPreference: ["luminance-alpha"],
},
});
const glBinding = new XRWebGLBinding(session, gl);
// â¦
// Obtain depth information in an active and animated frame
function rafCallback(time, frame) {
session.requestAnimationFrame(rafCallback);
const pose = frame.getViewerPose(referenceSpace);
if (pose) {
for (const view of pose.views) {
const depthInformation = glBinding.getDepthInformation(view);
if (depthInformation) {
// Do something with the depth information
// gl.bindTexture(gl.TEXTURE_2D, depthInformation.texture);
// â¦
}
}
}
}
Specifications Browser compatibility See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4