diff --git a/apps/landing/src/utils/util.ts b/apps/landing/src/utils/util.ts index 8813c840c..d259d686e 100644 --- a/apps/landing/src/utils/util.ts +++ b/apps/landing/src/utils/util.ts @@ -34,6 +34,7 @@ export function detectWebGLContext() { (ctx) => ctx != null && (ctx instanceof WebGLRenderingContext || - (WebGL2RenderingContext != null && ctx instanceof WebGL2RenderingContext)) + (WebGL2RenderingContext != null && ctx instanceof WebGL2RenderingContext)) && + ctx.getParameter(ctx.VERSION) != null ); }