gpu: implement Dawn bindGroupSetLabel

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-07-30 15:30:36 -07:00 committed by Stephen Gutekanst
parent f26b70fc7b
commit 3ad8cd6152

View file

@ -80,9 +80,7 @@ pub const Interface = gpu.Interface(struct {
}
pub inline fn bindGroupSetLabel(bind_group: *gpu.BindGroup, label: [*:0]const u8) void {
_ = bind_group;
_ = label;
unreachable;
procs.bindGroupSetLabel.?(@ptrCast(c.WGPUBindGroup, bind_group), label);
}
pub inline fn bindGroupReference(bind_group: *gpu.BindGroup) void {