mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Basic XRView interface
This commit is contained in:
parent
31feb1eca2
commit
73c530344c
3 changed files with 48 additions and 0 deletions
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;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue