web api instance property
GPUAdapterInfo: vendor property
Secure contextAvailable in workers
The vendor read-only property of the
GPUAdapterInfo interface returns the name of the adapter vendor, 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.vendor);
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