11 lines
177 B
JavaScript
11 lines
177 B
JavaScript
goog.provide('ol.webgl.WebGLContextEventType');
|
|
|
|
|
|
/**
|
|
* @enum {string}
|
|
*/
|
|
ol.webgl.WebGLContextEventType = {
|
|
LOST: 'webglcontextlost',
|
|
RESTORED: 'webglcontextrestored'
|
|
};
|