web api instance property
GPUAdapterInfo: device property
Secure contextAvailable in workers
The device read-only property of the
GPUAdapterInfo interface returns a vendor-specific identifier for the adapter, or an empty string if it is not available.
Value
A string.
Examples
const adapter = await navigator.gpu.requestAdapter();
if (!adapter) {
throw Error("Couldn't request WebGPU adapter.");
}
const adapterInfo = adapter.info;
console.log(adapterInfo.device);
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.
See also
- The WebGPU API