XRCubeLayer: redraw event
The redraw
event is sent to the XRCubeLayer
object when the underlying resources of the layer are lost or when the XR Compositor can no longer reproject the layer. If this event is sent, authors should redraw the content of the layer in the next XR animation frame.
See also the XRCompositionLayer.needsRedraw
property which is also available to XRCubeLayer
objects through inheritance from XRCompositionLayer
.
The event is of type XRLayerEvent
. Also passed to the XRCubeLayer.onredraw
event handler property.
Bubbles | No |
---|---|
Cancelable | No |
Interface | XRLayerEvent |
Event handler | XRCubeLayer.onredraw |
Examples
Using the redraw
event
You can pass redraw
to addEventListener()
:
cubeLayer.addEventListener("redraw", function(event) { // redraw the layer });
Alternatively, you can use the onredraw
event handler property to establish a handler for the redraw
event:
cubeLayer.onredraw = function(event) { // redraw the layer }
Specifications
No specification data found for api.XRCubeLayer.redraw_event
.
Check for problems with this page or contribute a missing spec_url
to mdn/browser-compat-data. Also make sure the specification is included in w3c/browser-specs.
Browser compatibility
No compatibility data found for api.XRCubeLayer.redraw_event
.
Check for problems with this page or contribute missing data to mdn/browser-compat-data.
See also
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/XRCubeLayer/redraw_event