Spaces:
Running
Running
File size: 287 Bytes
8194362 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
export function isWebGlSupported () {
if (!window.WebGLRenderingContext) {
return false
}
try {
const canvas = document.createElement('canvas')
return !!((canvas.getContext('webgl') || canvas.getContext('experimental-webgl')))
}
catch (e) {
return false
}
}
|