Skip to content

immersive-web/webxr-layers-polyfill

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

webxr-layers-polyfill

A Javascript implementation of the WebXR Layers API, which renders layers in WebGL.

This polyfill only polyfills the Layers API; use the WebXR Polyfill to polyfill other WebXR features.

Setup

Download the polyfill from build/webxr-layers-polyfill.js and include it as a script tag.

<script src="webxr-layers-polyfill.js"></script>

Then, you will need to instantiate the polyfill in code before calling any XR code:

let layersPolyfill = new WebXRLayersPolyfill()

Building

The polyfill is written in Typescript and bundled with Rollup. Build with

$ npm run build

To run the examples, create a build, then run:

$ npm run serve

and point your web browser to http://localhost:8080/examples/layers-samples/.

What does it do?

The polyfill provides polyfilled classes for the new layer types defined in the WebXR Layers API, and modifies XRSession to use those polyfilled classes. The layers provide the WebGLTextures that the application renders into, then the polyfilled XRSession renders those layers onto an internal baseLayer. This baseLayer is then displayed in headset, in the same way that an XRSession without layers support would render it.

Not Supported

  • onredraw events for XRCubeLayer, XRCylinderLayer, XREquirectLayer, and XRQuadLayer are not implemented.
  • mipLevels - the polyfill ignores them, and assumes all layers are created without mipmaps.
  • Secondary views on XRProjectionLayer are ignored.

License

This program is free software for both commercial and non-commercial use, distributed under the Apache 2.0 license, which can be found in the LICENSE file.

About

WebXR Layers Polyfill library. Lead: Rik Cabanier.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published