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

@ -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;
};