mirror of
https://github.com/servo/servo.git
synced 2025-08-05 13:40:08 +01:00
Basic XRView interface
This commit is contained in:
parent
31feb1eca2
commit
73c530344c
3 changed files with 48 additions and 0 deletions
|
@ -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;
|
||||
|
|
17
components/script/dom/webidls/XRView.webidl
Normal file
17
components/script/dom/webidls/XRView.webidl
Normal 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;
|
||||
};
|
30
components/script/dom/xrview.rs
Normal file
30
components/script/dom/xrview.rs
Normal 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,
|
||||
)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue