You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On machines without shader capability shaderback.js will drop back to the usual static background. This happens because the gl context will be returned as null.
However, this fallback isn't very graceful as it generates a null context error in the Javascript. The user doesn't get to see this, but it would still be neater to catch the error and fail completely transparently.
The solution is to catch the error or check for a null context and turn off the relevant Javascript updates.
The text was updated successfully, but these errors were encountered:
Introduced code as of 97df0be to allow graceful failover. A debug option (set using setDebug(actiive)) allows error alerts to be generated or turned off.
On machines without shader capability shaderback.js will drop back to the usual static background. This happens because the gl context will be returned as null.
However, this fallback isn't very graceful as it generates a null context error in the Javascript. The user doesn't get to see this, but it would still be neater to catch the error and fail completely transparently.
The solution is to catch the error or check for a null context and turn off the relevant Javascript updates.
The text was updated successfully, but these errors were encountered: