Move ol.webgl.WebGLContextEventType into ol.webgl

This commit is contained in:
Tom Payne
2012-07-17 11:56:44 +02:00
parent da9c39b737
commit 1aaa59a110
2 changed files with 12 additions and 9 deletions
+10
View File
@@ -1,4 +1,14 @@
goog.provide('ol.webgl');
goog.provide('ol.webgl.WebGLContextEventType');
/**
* @enum {string}
*/
ol.webgl.WebGLContextEventType = {
LOST: 'webglcontextlost',
RESTORED: 'webglcontextrestored'
};
/**