gpu: implement Dawn querySetReference
Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
parent
aa8209e708
commit
83330d621f
1 changed files with 2 additions and 4 deletions
|
|
@ -685,13 +685,11 @@ pub const Interface = gpu.Interface(struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub inline fn querySetReference(query_set: *gpu.QuerySet) void {
|
pub inline fn querySetReference(query_set: *gpu.QuerySet) void {
|
||||||
_ = query_set;
|
procs.querySetReference.?(@ptrCast(c.WGPUQuerySet, query_set));
|
||||||
unreachable;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub inline fn querySetRelease(query_set: *gpu.QuerySet) void {
|
pub inline fn querySetRelease(query_set: *gpu.QuerySet) void {
|
||||||
_ = query_set;
|
procs.querySetRelease.?(@ptrCast(c.WGPUQuerySet, query_set));
|
||||||
unreachable;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub inline fn queueCopyTextureForBrowser(queue: *gpu.Queue, source: *const gpu.ImageCopyTexture, destination: *const gpu.ImageCopyTexture, copy_size: *const gpu.Extent3D, options: *const gpu.CopyTextureForBrowserOptions) void {
|
pub inline fn queueCopyTextureForBrowser(queue: *gpu.Queue, source: *const gpu.ImageCopyTexture, destination: *const gpu.ImageCopyTexture, copy_size: *const gpu.Extent3D, options: *const gpu.CopyTextureForBrowserOptions) void {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue