├── .github └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── webxr-api ├── Cargo.toml ├── device.rs ├── error.rs ├── events.rs ├── frame.rs ├── hand.rs ├── hittest.rs ├── input.rs ├── layer.rs ├── lib.rs ├── mock.rs ├── registry.rs ├── session.rs ├── space.rs ├── util.rs └── view.rs └── webxr ├── Cargo.toml ├── gl_utils.rs ├── glwindow └── mod.rs ├── headless └── mod.rs ├── lib.rs ├── openxr ├── graphics.rs ├── graphics_d3d11.rs ├── input.rs ├── interaction_profiles.rs └── mod.rs └── surfman_layer_manager.rs /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/README.md -------------------------------------------------------------------------------- /webxr-api/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr-api/Cargo.toml -------------------------------------------------------------------------------- /webxr-api/device.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr-api/device.rs -------------------------------------------------------------------------------- /webxr-api/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr-api/error.rs -------------------------------------------------------------------------------- /webxr-api/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr-api/events.rs -------------------------------------------------------------------------------- /webxr-api/frame.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr-api/frame.rs -------------------------------------------------------------------------------- /webxr-api/hand.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr-api/hand.rs -------------------------------------------------------------------------------- /webxr-api/hittest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr-api/hittest.rs -------------------------------------------------------------------------------- /webxr-api/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr-api/input.rs -------------------------------------------------------------------------------- /webxr-api/layer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr-api/layer.rs -------------------------------------------------------------------------------- /webxr-api/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr-api/lib.rs -------------------------------------------------------------------------------- /webxr-api/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr-api/mock.rs -------------------------------------------------------------------------------- /webxr-api/registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr-api/registry.rs -------------------------------------------------------------------------------- /webxr-api/session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr-api/session.rs -------------------------------------------------------------------------------- /webxr-api/space.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr-api/space.rs -------------------------------------------------------------------------------- /webxr-api/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr-api/util.rs -------------------------------------------------------------------------------- /webxr-api/view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr-api/view.rs -------------------------------------------------------------------------------- /webxr/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr/Cargo.toml -------------------------------------------------------------------------------- /webxr/gl_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr/gl_utils.rs -------------------------------------------------------------------------------- /webxr/glwindow/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr/glwindow/mod.rs -------------------------------------------------------------------------------- /webxr/headless/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr/headless/mod.rs -------------------------------------------------------------------------------- /webxr/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr/lib.rs -------------------------------------------------------------------------------- /webxr/openxr/graphics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr/openxr/graphics.rs -------------------------------------------------------------------------------- /webxr/openxr/graphics_d3d11.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr/openxr/graphics_d3d11.rs -------------------------------------------------------------------------------- /webxr/openxr/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr/openxr/input.rs -------------------------------------------------------------------------------- /webxr/openxr/interaction_profiles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr/openxr/interaction_profiles.rs -------------------------------------------------------------------------------- /webxr/openxr/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr/openxr/mod.rs -------------------------------------------------------------------------------- /webxr/surfman_layer_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/webxr/HEAD/webxr/surfman_layer_manager.rs --------------------------------------------------------------------------------