2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-06-26 01:45:14 +00:00
|
|
|
const canvas = globalThis.OffscreenCanvas && new OffscreenCanvas(1, 1);
|
2023-09-19 08:08:55 +00:00
|
|
|
// 環境によってはOffscreenCanvasが存在しないため
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
|
|
|
const gl = canvas?.getContext('webgl2');
|
2023-05-19 00:44:06 +00:00
|
|
|
if (gl) {
|
2023-07-27 05:31:52 +00:00
|
|
|
postMessage({ result: true });
|
2023-05-19 00:44:06 +00:00
|
|
|
} else {
|
2023-07-27 05:31:52 +00:00
|
|
|
postMessage({ result: false });
|
2023-05-19 00:44:06 +00:00
|
|
|
}
|