The webglcontextrestored
event of the WebGL API is fired if the user agent restores the drawing buffer for a WebGLRenderingContext
object.
Once the context is restored, WebGL resources such as textures and buffers that were created before the context was lost are no longer valid. You need to reinitialize the state of your WebGL application and recreate resources.
Bubbles | Yes |
Cancelable | Yes |
Target objects | HTMLCanvasElement |
Interface | WebGLContextEvent |
With the help of the WEBGL_lose_context
extension, you can simulate the webglcontextrestored
event:
var canvas = document.getElementById('canvas'); var gl = canvas.getContext('webgl'); canvas.addEventListener('webglcontextrestored', function(e) { console.log(e); }, false); gl.getExtension('WEBGL_lose_context').restoreContext(); // "webglcontextrestored" event is logged.
The webglcontextrestored
event implements the WebGLContextEvent
interface, which inherits from Event
. You can use the properties and methods defined on these interfaces.
Specification | Status | Comment |
---|---|---|
WebGL 1.0 The definition of 'webglcontextrestored' in that specification. | Recommendation | Initial definition. |
We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 9 | (Yes) | 4.0 (2.0) | 11 | 12 | 5.1 |
Feature | Android | Chrome for Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|
Basic support | ? | 25 | (Yes) | 4.0 (2.0) | ? | 12 | 8.0 |
WebGLContextEvent
WebGLRenderingContext.isContextLost()
WEBGL_lose_context
, WEBGL_lose_context.loseContext()
, WEBGL_lose_context.restoreContext()
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/Events/webglcontextrestored