mirror of
https://github.com/servo/servo.git
synced 2025-10-14 23:40:26 +01:00
25 lines
617 B
Text
25 lines
617 B
Text
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into reffy-reports
|
|
// (https://github.com/tidoust/reffy-reports)
|
|
// Source: WebXR Augmented Reality Module - Level 1 (https://immersive-web.github.io/webxr-ar-module/)
|
|
|
|
enum XREnvironmentBlendMode {
|
|
"opaque",
|
|
"alpha-blend",
|
|
"additive"
|
|
};
|
|
|
|
partial interface XRSession {
|
|
// Attributes
|
|
readonly attribute XREnvironmentBlendMode environmentBlendMode;
|
|
};
|
|
|
|
enum XRInteractionMode {
|
|
"screen-space",
|
|
"world-space",
|
|
};
|
|
|
|
partial interface XRSession {
|
|
// Attributes
|
|
readonly attribute XRInteractionMode interactionMode;
|
|
};
|