GPUAdapter: requestAdapterInfo() method - Web APIs | MDN
Syntax
Parameters
None.
Return value
A Promise that fulfills with a GPUAdapterInfo object instance.
Examples
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 adapterInfo = await adapter.requestAdapterInfo();
console.log(adapterInfo.vendor);
console.log(adapterInfo.architecture);
// …
}
Specifications
No longer part of the WebGPU specification.
Browser compatibility
See also
- The WebGPU API