Files

10 lines
236 B
TypeScript
Raw Permalink Normal View History

export function hasWebGL2(): boolean {
if (typeof window === "undefined") return false;
try {
const canvas = document.createElement("canvas");
return Boolean(canvas.getContext("webgl2"));
} catch {
return false;
}
}