demo · v139

Core Features List

v139 defines the WebGPU "core" baseline — features and limits every conforming adapter ships. Click below to query your real GPU adapter and compare it against the core set.

Click "Query" to inspect your adapter.
device path: no request made yet.

core features (v139 baseline)

core limits

the code

const adapter = await navigator.gpu.requestAdapter();
// v139 guarantees these are present on any conforming adapter:
for (const f of adapter.features) console.log(f);
for (const k in adapter.limits) console.log(k, adapter.limits[k]);

see also