mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
19 lines
676 B
Plaintext
19 lines
676 B
Plaintext
// https://immersive-web.github.io/webxr/#xrrenderstate-interface
|
|
|
|
[Experimental] dictionary XRRenderStateInit {
|
|
double depthNear;
|
|
double depthFar;
|
|
boolean passthroughFullyObscured;
|
|
double inlineVerticalFieldOfView;
|
|
// FIXME: XRWebGLLayer? baseLayer;
|
|
// FIXME: sequence<XRLayer>? layers;
|
|
};
|
|
|
|
[Experimental, SecureContext, Exposed=Window] interface XRRenderState {
|
|
[FIXME] readonly attribute double depthNear;
|
|
[FIXME] readonly attribute double depthFar;
|
|
[FIXME] readonly attribute boolean? passthroughFullyObscured;
|
|
[FIXME] readonly attribute double? inlineVerticalFieldOfView;
|
|
[FIXME] readonly attribute XRWebGLLayer? baseLayer;
|
|
};
|