WorkerNavigator:gpu 属性
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
io error: No such file or directory (os error 2) (/home/runner/work/yari/yari/mdn/translated-content/files/zh-cn/web/api/workernavigator/index.md)
WorkerNavigator
接口的 gpu
只读属性返回当前浏览上下文的 GPU
对象,该对象是 WebGPU API 的入口点。
值
一个 GPU
对象。
示例
js
// 可以在 web worker 中运行
async function init() {
if (!navigator.gpu) {
throw Error("不支持 WebGPU。");
}
const adapter = await navigator.gpu.requestAdapter();
if (!adapter) {
throw Error("无法请求 WebGPU 适配器。");
}
const device = await adapter.requestDevice();
//...
}
规范
Specification |
---|
WebGPU # navigator-gpu |
浏览器兼容性
BCD tables only load in the browser