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: ?
| limit | value | status |
|---|---|---|
| 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
- maxInterStageShaderComponents removed โ feature index
- ChromeStatus entry
- WebGPU spec