Navigator.gpu
Navigator.gpu
只读属性为当前浏览上下文返回 GPU
对象,该对象是 WebGPU API 的入口点。
值
一个 GPU
对象。
示例
js
async function init() {
if (!navigator.gpu) {
throw Error("WebGPU not supported.");
}
const adapter = await navigator.gpu.requestAdapter();
if (!adapter) {
throw Error("Couldn't request WebGPU adapter.");
}
const device = await adapter.requestDevice();
//...
}
规范
Specification |
---|
WebGPU # navigator-gpu |
浏览器兼容性
BCD tables only load in the browser