Closed
Description
The JavaScript API allows individual targets to be null
dictionary GPUFragmentState : GPUProgrammableStage {
required sequence<GPUColorTargetState?> targets;
};
which allows holes in the array of color attachments.
With webgpu.h
we can pass NULL
for the entire fragment state, or pass a 0 length targets
array but cannot skip color attachments.