Basic XRView interface

This commit is contained in:
Manish Goregaokar 2018-12-19 16:48:44 -08:00
parent 31feb1eca2
commit 73c530344c
3 changed files with 48 additions and 0 deletions

View file

@ -524,5 +524,6 @@ pub mod xrreferencespace;
pub mod xrsession;
pub mod xrspace;
pub mod xrstationaryreferencespace;
pub mod xrview;
pub mod xrviewerpose;
pub mod xrwebgllayer;

View file

@ -0,0 +1,17 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
// https://immersive-web.github.io/webxr/#xrview-interface
enum XREye {
"left",
"right"
};
[SecureContext, Exposed=Window] interface XRView {
// readonly attribute XREye eye;
// readonly attribute Float32Array projectionMatrix;
// readonly attribute Float32Array viewMatrix;
// readonly attribute XRRigidTransform transform;
};

View file

@ -0,0 +1,30 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
use crate::dom::bindings::codegen::Bindings::XRViewBinding;
use crate::dom::bindings::reflector::{reflect_dom_object, Reflector};
use crate::dom::bindings::root::DomRoot;
use crate::dom::globalscope::GlobalScope;
use dom_struct::dom_struct;
#[dom_struct]
pub struct XRView {
reflector_: Reflector,
}
impl XRView {
fn new_inherited() -> XRView {
XRView {
reflector_: Reflector::new(),
}
}
pub fn new(global: &GlobalScope) -> DomRoot<XRView> {
reflect_dom_object(
Box::new(XRView::new_inherited()),
global,
XRViewBinding::Wrap,
)
}
}