summaryrefslogtreecommitdiff
path: root/packages/frontend/src/workers/test-webgl2.ts
blob: 8f13c57cae152df892d36e412dbba96be19d2d82 (plain)
1
2
3
4
5
6
7
const canvas = globalThis.OffscreenCanvas && new OffscreenCanvas(1, 1);
const gl = canvas?.getContext('webgl2');
if (gl) {
    postMessage({ result: true });
} else {
    postMessage({ result: false });
}