(error: Error)
| 90 | * Checks if an error is likely a WebGL context loss event. |
| 91 | */ |
| 92 | export function isWebGLContextLostError(error: Error): boolean { |
| 93 | return classifyError(error) === 'webgl_context_lost'; |
| 94 | } |
| 95 | |
| 96 | /** |
| 97 | * Checks if an error is recoverable without a full page reload. |
nothing calls this directly
no test coverage detected