XRWebGLBinding()
The XRWebGLBinding() constructor creates and returns a new XRWebGLBinding object.
Syntax
new XRWebGLBinding(session, context)
Parameters
session-
An
XRSessionobject specifying the WebXR session which will be rendered using the WebGL context. context-
A
WebGLRenderingContextorWebGL2RenderingContextidentifying the WebGL drawing context to use for rendering the scene for the specified WebXR session.
Return value
A newly-created XRWebGLBinding.
Exceptions
InvalidStateError-
The new
XRWebGLBindingcould not be created due to one of a number of possible state errors:- The
XRSessionspecified bysessionhas already been stopped. - The specified WebGL context,
context, has been lost for any reason, such as a GPU switch or reset. - The specified
sessionis immersive but thecontextis not WebXR compatible.
- The
Example
const canvasElement = document.querySelector(".output-canvas"); const gl = canvasElement.getContext("webgl"); const xrSession = await navigator.xr.requestSession("immersive-vr"); await gl.makeXRCompatible(); const glBinding = new XRWebGLBinding(xrSession, gl);
Specifications
Browser compatibility
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
XRWebGLBinding |
89 |
89 |
No |
No |
75 |
No |
No |
89 |
No |
63 |
No |
No |
See also
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/XRWebGLBinding/XRWebGLBinding