listen to webglcontextcreationerror for information; fixes #1846
This commit is contained in:
Родитель
ccb6463185
Коммит
b988457c13
|
@ -250,15 +250,24 @@ mergeInto(LibraryManager.library, {
|
|||
contextAttributes.preserveDrawingBuffer = true;
|
||||
#endif
|
||||
|
||||
var errorInfo = '?';
|
||||
function onContextCreationError(event) {
|
||||
errorInfo = e.statusMessage || errorInfo;
|
||||
}
|
||||
canvas.addEventListener('webglcontextcreationerror', onContextCreationError, false);
|
||||
try {
|
||||
['experimental-webgl', 'webgl'].some(function(webglId) {
|
||||
return ctx = canvas.getContext(webglId, contextAttributes);
|
||||
});
|
||||
} finally {
|
||||
canvas.removeEventListener('webglcontextcreationerror', onContextCreationError, false);
|
||||
}
|
||||
} else {
|
||||
ctx = canvas.getContext('2d');
|
||||
}
|
||||
if (!ctx) throw ':(';
|
||||
} catch (e) {
|
||||
Module.print('Could not create canvas - ' + e);
|
||||
Module.print('Could not create canvas: ' + [errorInfo, e]);
|
||||
return null;
|
||||
}
|
||||
if (useWebGL) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче