Back to Content

GPUAdapter: info property

files/en-us/web/api/gpuadapter/info/index.md

latest727 B
Original Source

{{APIRef("WebGPU API")}}{{SecureContext_Header}}{{AvailableInWorkers}}

The info read-only property of the {{domxref("GPUAdapter")}} interface returns a {{domxref("GPUAdapterInfo")}} object containing identifying information about the adapter.

Value

A {{domxref("GPUAdapterInfo")}} object instance.

Examples

Basic info usage

js
const adapter = await navigator.gpu.requestAdapter();
if (!adapter) {
  throw Error("Couldn't request WebGPU adapter.");
}

const adapterInfo = adapter.info;
console.log(adapterInfo.vendor);
console.log(adapterInfo.architecture);

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also