webgpu-syntax-render-pipeline
Installation
SKILL.md
WebGPU Render Pipeline
Create an immutable GPURenderPipeline that captures vertex layout, fragment
targets, blending, primitive topology, and depth-stencil state without triggering
WebGPU pipeline-creation validation errors.
Quick Reference
WebGPU 1.0-stable baseline: Chrome 113+, Safari 26+, Firefox 141+.
device.createRenderPipeline(descriptor) returns a GPURenderPipeline.
device.createRenderPipelineAsync(descriptor) returns Promise<GPURenderPipeline>
and compiles off the content timeline.