XRCylinderLayer: redraw event
The redraw
event is sent to the XRCylinderLayer
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 XRCylinderLayer
objects through inheritance from XRCompositionLayer
.
Syntax
Use the event name in methods like addEventListener()
, or set an event handler property.
addEventListener('redraw', event => { })
onredraw = event => { }
Event type
An XRLayerEvent
. Inherits from Event
.
Event properties
In addition to the properties listed below, properties from the parent interface, Event
, are available.
Examples
Using the redraw
event
You can pass redraw
to addEventListener()
:
cylinderLayer.addEventListener("redraw", function(event) {
// redraw the layer
});
Alternatively, you can use the onredraw
event handler property to establish a handler for the redraw
event:
cylinderLayer.onredraw = function(event) {
// redraw the layer
}
Specifications
No specification found
No specification data found for api.XRCylinderLayer.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.XRCylinderLayer.redraw_event
.
Check for problems with this page or contribute missing data to mdn/browser-compat-data.