demo ยท v135

What's left of GPUSupportedLimits

Chrome 135 removes the deprecated maxInterStageShaderComponents limit from GPUSupportedLimits. Authors should query maxInterStageShaderVariables instead. The probe below queries your live WebGPU adapter and prints the table.

navigator.gpu: ?
limitvaluestatus
click probe

the code

const adapter = await navigator.gpu.requestAdapter();
const limits = adapter.limits;

// REMOVED in Chrome 135:
// limits.maxInterStageShaderComponents

// Use this instead:
limits.maxInterStageShaderVariables

see also