Skip to content

Commit

Permalink
[WebGPU] GPUDevice::createComputePipeline does not handle missing opt…
Browse files Browse the repository at this point in the history
…ional layout field

https://bugs.webkit.org/show_bug.cgi?id=263784
<radar://117589263>

Reviewed by Tadeu Zagallo.

The field is required according to the specification.

* Source/WebCore/Modules/WebGPU/GPUPipelineDescriptorBase.idl:

Canonical link: https://commits.webkit.org/269953@main
  • Loading branch information
mwyrzykowski committed Oct 30, 2023
1 parent de64d00 commit 693c11a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
EnabledBySetting=WebGPUEnabled
]
dictionary GPUPipelineDescriptorBase : GPUObjectDescriptorBase {
(GPUPipelineLayout or GPUAutoLayoutMode) layout;
required (GPUPipelineLayout or GPUAutoLayoutMode) layout;
};

0 comments on commit 693c11a

Please sign in to comment.