gpu: implement Dawn pipelineLayoutSetLabel

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-07-30 15:34:03 -07:00 committed by Stephen Gutekanst
parent dd634dfc57
commit beef23a79c

View file

@ -630,9 +630,7 @@ pub const Interface = gpu.Interface(struct {
}
pub inline fn pipelineLayoutSetLabel(pipeline_layout: *gpu.PipelineLayout, label: [*:0]const u8) void {
_ = pipeline_layout;
_ = label;
unreachable;
procs.pipelineLayoutSetLabel.?(@ptrCast(c.WGPUPipelineLayout, pipeline_layout), label);
}
pub inline fn pipelineLayoutReference(pipeline_layout: *gpu.PipelineLayout) void {