web api instance property
GPUAdapterInfo: description property
Secure contextAvailable in workers
The description read-only property of the
GPUAdapterInfo interface returns a human-readable string describing 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.description);
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