web api instance property
XRCompositionLayer: layout property
Limited availability
The read-only layout property of the XRCompositionLayer interface is the layout type of the layer.
To specify the layout type of a layer, use one of the layer creation methods and their layout option:
Value
A string. Possible values:
default- : The layer accommodates all views of the session. It is recommended to use the
texture-arraytexture type fordefaultlayouts.
- : The layer accommodates all views of the session. It is recommended to use the
mono- : A single
XRSubImageis allocated and presented to both eyes.
- : A single
stereo- : The user agent decides how it allocates the
XRSubImage(one or two) and the layout (top/bottom or left/right). It is recommended to use thetexture-arraytexture type forstereolayouts.
- : The user agent decides how it allocates the
stereo-left-right- : A single
XRSubImageis allocated. Left eye gets the left area of the texture, right eye the right. This layout is designed to minimize draw calls for content that is already in stereo (for example stereo videos or images).
- : A single
stereo-top-bottom- : A single
XRSubImageis allocated. Left eye gets the top area of the texture, right eye the bottom. This layout is designed to minimize draw calls for content that is already in stereo (for example stereo videos or images).
- : A single
Examples
Setting and getting a layer’s layout
To specify a layer’s layout, use a layer creation method (like createQuadLayer()) and its layout option. To retrieve the type of layer layout, use the layout property:
const layer = xrGlBinding.createQuadLayer({
pixelWidth: 1024,
pixelHeight: 768,
layout: "stereo",
});
layer.layout; // "stereo"
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.