gpu: implement Dawn commandEncoderPushDebugGroup
Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
parent
dc227032e0
commit
b9e58340fb
1 changed files with 4 additions and 3 deletions
|
|
@ -259,9 +259,10 @@ pub const Interface = gpu.Interface(struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub inline fn commandEncoderPushDebugGroup(command_encoder: *gpu.CommandEncoder, group_label: [*:0]const u8) void {
|
pub inline fn commandEncoderPushDebugGroup(command_encoder: *gpu.CommandEncoder, group_label: [*:0]const u8) void {
|
||||||
_ = command_encoder;
|
procs.commandEncoderPushDebugGroup.?(
|
||||||
_ = group_label;
|
@ptrCast(c.WGPUCommandEncoder, command_encoder),
|
||||||
unreachable;
|
group_label,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub inline fn commandEncoderResolveQuerySet(command_encoder: *gpu.CommandEncoder, query_set: *gpu.QuerySet, first_query: u32, query_count: u32, destination: *gpu.Buffer, destination_offset: u64) void {
|
pub inline fn commandEncoderResolveQuerySet(command_encoder: *gpu.CommandEncoder, query_set: *gpu.QuerySet, first_query: u32, query_count: u32, destination: *gpu.Buffer, destination_offset: u64) void {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue