mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-02-02 01:08:19 +00:00
283 lines
8.4 KiB
Plaintext
283 lines
8.4 KiB
Plaintext
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/*
|
|
* WebXR Device API
|
|
* W3C Working Draft, 10 October 2019
|
|
* The origin of this IDL file is:
|
|
* https://www.w3.org/TR/2019/WD-webxr-20191010/
|
|
*/
|
|
|
|
partial interface Navigator {
|
|
[SecureContext, SameObject] readonly attribute XRSystem xr;
|
|
};
|
|
|
|
[SecureContext, Exposed=Window] interface XRSystem : EventTarget {
|
|
// Methods
|
|
Promise<boolean> isSessionSupported(XRSessionMode mode);
|
|
[NewObject] Promise<XRSession> requestSession(XRSessionMode mode, optional XRSessionInit options = {});
|
|
|
|
// Events
|
|
attribute EventHandler ondevicechange;
|
|
};
|
|
|
|
enum XRSessionMode {
|
|
"inline",
|
|
"immersive-vr"
|
|
};
|
|
|
|
dictionary XRSessionInit {
|
|
sequence<any> requiredFeatures;
|
|
sequence<any> optionalFeatures;
|
|
};
|
|
|
|
enum XRVisibilityState {
|
|
"visible",
|
|
"visible-blurred",
|
|
"hidden",
|
|
};
|
|
|
|
[SecureContext, Exposed=Window] interface XRSession : EventTarget {
|
|
// Attributes
|
|
readonly attribute XRVisibilityState visibilityState;
|
|
[SameObject] readonly attribute XRRenderState renderState;
|
|
[SameObject] readonly attribute XRInputSourceArray inputSources;
|
|
|
|
// Methods
|
|
undefined updateRenderState(optional XRRenderStateInit state = {});
|
|
[NewObject] Promise<XRReferenceSpace> requestReferenceSpace(XRReferenceSpaceType type);
|
|
|
|
long requestAnimationFrame(XRFrameRequestCallback callback);
|
|
undefined cancelAnimationFrame(long handle);
|
|
|
|
Promise<undefined> end();
|
|
|
|
// Events
|
|
attribute EventHandler onend;
|
|
attribute EventHandler onselect;
|
|
attribute EventHandler oninputsourceschange;
|
|
attribute EventHandler onselectstart;
|
|
attribute EventHandler onselectend;
|
|
attribute EventHandler onvisibilitychange;
|
|
};
|
|
|
|
dictionary XRRenderStateInit {
|
|
double depthNear;
|
|
double depthFar;
|
|
double inlineVerticalFieldOfView;
|
|
XRWebGLLayer? baseLayer;
|
|
};
|
|
|
|
[SecureContext, Exposed=Window] interface XRRenderState {
|
|
readonly attribute double depthNear;
|
|
readonly attribute double depthFar;
|
|
readonly attribute double? inlineVerticalFieldOfView;
|
|
readonly attribute XRWebGLLayer? baseLayer;
|
|
};
|
|
|
|
callback XRFrameRequestCallback = undefined (DOMHighResTimeStamp time, XRFrame frame);
|
|
|
|
[SecureContext, Exposed=Window] interface XRFrame {
|
|
[SameObject] readonly attribute XRSession session;
|
|
|
|
XRViewerPose? getViewerPose(XRReferenceSpace referenceSpace);
|
|
XRPose? getPose(XRSpace space, XRSpace baseSpace);
|
|
};
|
|
|
|
[SecureContext, Exposed=Window] interface XRSpace : EventTarget {
|
|
|
|
};
|
|
|
|
enum XRReferenceSpaceType {
|
|
"viewer",
|
|
"local",
|
|
"local-floor",
|
|
"bounded-floor",
|
|
"unbounded"
|
|
};
|
|
|
|
[SecureContext, Exposed=Window]
|
|
interface XRReferenceSpace : XRSpace {
|
|
[NewObject] XRReferenceSpace getOffsetReferenceSpace(XRRigidTransform originOffset);
|
|
|
|
attribute EventHandler onreset;
|
|
};
|
|
|
|
[SecureContext, Exposed=Window]
|
|
interface XRBoundedReferenceSpace : XRReferenceSpace {
|
|
// TODO: Re-enable FrozenArray when supported. See https://bugzilla.mozilla.org/show_bug.cgi?id=1236777
|
|
//readonly attribute FrozenArray<DOMPointReadOnly> boundsGeometry;
|
|
[Frozen, Cached, Pure]
|
|
readonly attribute sequence<DOMPointReadOnly> boundsGeometry;
|
|
};
|
|
|
|
enum XREye {
|
|
"none",
|
|
"left",
|
|
"right"
|
|
};
|
|
|
|
[SecureContext, Exposed=Window] interface XRView {
|
|
readonly attribute XREye eye;
|
|
readonly attribute Float32Array projectionMatrix;
|
|
[SameObject] readonly attribute XRRigidTransform transform;
|
|
};
|
|
|
|
[SecureContext, Exposed=Window] interface XRViewport {
|
|
readonly attribute long x;
|
|
readonly attribute long y;
|
|
readonly attribute long width;
|
|
readonly attribute long height;
|
|
};
|
|
|
|
[SecureContext, Exposed=Window]
|
|
interface XRRigidTransform {
|
|
constructor(optional DOMPointInit position = {}, optional DOMPointInit orientation = {});
|
|
[SameObject] readonly attribute DOMPointReadOnly position;
|
|
[SameObject] readonly attribute DOMPointReadOnly orientation;
|
|
readonly attribute Float32Array matrix;
|
|
[SameObject] readonly attribute XRRigidTransform inverse;
|
|
};
|
|
|
|
[SecureContext, Exposed=Window] interface XRPose {
|
|
[SameObject] readonly attribute XRRigidTransform transform;
|
|
readonly attribute boolean emulatedPosition;
|
|
};
|
|
|
|
[SecureContext, Exposed=Window] interface XRViewerPose : XRPose {
|
|
// TODO: Re-enable FrozenArray when supported. See https://bugzilla.mozilla.org/show_bug.cgi?id=1236777
|
|
//[SameObject] readonly attribute FrozenArray<XRView> views;
|
|
[SameObject, Frozen, Cached, Pure]
|
|
readonly attribute sequence<XRView> views;
|
|
};
|
|
|
|
enum XRHandedness {
|
|
"none",
|
|
"left",
|
|
"right"
|
|
};
|
|
|
|
enum XRTargetRayMode {
|
|
"gaze",
|
|
"tracked-pointer",
|
|
"screen"
|
|
};
|
|
|
|
[SecureContext, Exposed=Window]
|
|
interface XRInputSource {
|
|
readonly attribute Gamepad? gamepad;
|
|
readonly attribute XRHandedness handedness;
|
|
readonly attribute XRTargetRayMode targetRayMode;
|
|
[SameObject] readonly attribute XRSpace targetRaySpace;
|
|
[SameObject] readonly attribute XRSpace? gripSpace;
|
|
// TODO: Re-enable FrozenArray when supported. See https://bugzilla.mozilla.org/show_bug.cgi?id=1236777
|
|
//[SameObject] readonly attribute FrozenArray<DOMString> profiles;
|
|
[SameObject, Frozen, Cached, Pure]
|
|
readonly attribute sequence<DOMString> profiles;
|
|
};
|
|
|
|
[SecureContext, Exposed=Window]
|
|
interface XRInputSourceArray {
|
|
iterable<XRInputSource>;
|
|
readonly attribute unsigned long length;
|
|
getter XRInputSource(unsigned long index);
|
|
};
|
|
|
|
typedef (WebGLRenderingContext or
|
|
WebGL2RenderingContext) XRWebGLRenderingContext;
|
|
|
|
dictionary XRWebGLLayerInit {
|
|
boolean antialias = true;
|
|
boolean depth = true;
|
|
boolean stencil = false;
|
|
boolean alpha = true;
|
|
boolean ignoreDepthValues = false;
|
|
double framebufferScaleFactor = 1.0;
|
|
};
|
|
|
|
[SecureContext, Exposed=Window]
|
|
interface XRWebGLLayer: XRLayer {
|
|
constructor(XRSession session,
|
|
XRWebGLRenderingContext context,
|
|
optional XRWebGLLayerInit layerInit = {});
|
|
// Attributes
|
|
readonly attribute boolean antialias;
|
|
readonly attribute boolean ignoreDepthValues;
|
|
attribute float? fixedFoveation;
|
|
|
|
[SameObject] readonly attribute WebGLFramebuffer? framebuffer;
|
|
readonly attribute unsigned long framebufferWidth;
|
|
readonly attribute unsigned long framebufferHeight;
|
|
|
|
// Methods
|
|
XRViewport? getViewport(XRView view);
|
|
|
|
// Static Methods
|
|
static double getNativeFramebufferScaleFactor(XRSession session);
|
|
};
|
|
|
|
partial dictionary WebGLContextAttributes {
|
|
boolean xrCompatible = null;
|
|
};
|
|
|
|
partial interface mixin WebGLRenderingContextBase {
|
|
Promise<undefined> makeXRCompatible();
|
|
};
|
|
|
|
[SecureContext, Exposed=Window]
|
|
interface XRSessionEvent : Event {
|
|
constructor(DOMString type, XRSessionEventInit eventInitDict);
|
|
[SameObject] readonly attribute XRSession session;
|
|
};
|
|
|
|
dictionary XRSessionEventInit : EventInit {
|
|
required XRSession session;
|
|
};
|
|
|
|
[SecureContext, Exposed=Window]
|
|
interface XRInputSourceEvent : Event {
|
|
constructor(DOMString type, XRInputSourceEventInit eventInitDict);
|
|
[SameObject] readonly attribute XRFrame frame;
|
|
[SameObject] readonly attribute XRInputSource inputSource;
|
|
};
|
|
|
|
dictionary XRInputSourceEventInit : EventInit {
|
|
required XRFrame frame;
|
|
required XRInputSource inputSource;
|
|
};
|
|
|
|
[SecureContext, Exposed=Window]
|
|
interface XRInputSourcesChangeEvent : Event {
|
|
constructor(DOMString type, XRInputSourcesChangeEventInit eventInitDict);
|
|
[SameObject] readonly attribute XRSession session;
|
|
// TODO: Re-enable FrozenArray when supported. See https://bugzilla.mozilla.org/show_bug.cgi?id=1236777
|
|
//[SameObject] readonly attribute FrozenArray<XRInputSource> added;
|
|
[SameObject, Frozen, Cached, Pure]
|
|
readonly attribute sequence<XRInputSource> added;
|
|
//[SameObject] readonly attribute FrozenArray<XRInputSource> removed;
|
|
[SameObject, Frozen, Cached, Pure]
|
|
readonly attribute sequence<XRInputSource> removed;
|
|
};
|
|
|
|
dictionary XRInputSourcesChangeEventInit : EventInit {
|
|
required XRSession session;
|
|
// TODO: Re-enable FrozenArray when supported. See https://bugzilla.mozilla.org/show_bug.cgi?id=1236777
|
|
//required FrozenArray<XRInputSource> added;
|
|
[Frozen, Cached, Pure]
|
|
required sequence<XRInputSource> added;
|
|
//required FrozenArray<XRInputSource> removed;
|
|
[Frozen, Cached, Pure]
|
|
required sequence<XRInputSource> removed;
|
|
|
|
};
|
|
|
|
[SecureContext, Exposed=Window]
|
|
interface XRReferenceSpaceEvent : Event {
|
|
constructor(DOMString type, XRReferenceSpaceEventInit eventInitDict);
|
|
[SameObject] readonly attribute XRReferenceSpace referenceSpace;
|
|
[SameObject] readonly attribute XRRigidTransform? transform;
|
|
};
|
|
|
|
dictionary XRReferenceSpaceEventInit : EventInit {
|
|
required XRReferenceSpace referenceSpace;
|
|
XRRigidTransform transform;
|
|
};
|