Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

webglcontextrestored

이 문서는 아직 자원 봉사자들이 한국어로 번역하지 않았습니다. 함께 해서 번역을 마치도록 도와 주세요!

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

Example

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.

Inheritance

The webglcontextrestored event implements the WebGLContextEvent interface, which inherits from Event. You can use the properties and methods defined on these interfaces.

Specifications

Specification Status Comment
WebGL 1.0
The definition of 'webglcontextrestored' in that specification.
Recommendation Initial definition.

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support 9 4.0 (2.0) 11 12 5.1
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support ? 25 4.0 (2.0) ? 12 8.0

See also

문서 태그 및 공헌자

태그: 
 이 페이지의 공헌자: fscholz, teoli
 최종 변경: fscholz,