blob: b01e4aad1829e27d80a9b1c29ee729aaab5a6852 [file] [log] [blame] [edit]
const result = [
`WebGL supported in nested Worker: ${new OffscreenCanvas(1, 1).getContext("webgl") !== null}`,
`WebGL2 supported in nested Worker: ${new OffscreenCanvas(1, 1).getContext("webgl2") !== null}`,
];
self.postMessage(result);