gpu: convert *opaque -> opaque for CommandBuffer

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-07-29 22:28:18 -07:00 committed by Stephen Gutekanst
parent 1714f43e1f
commit e15cb4009a
4 changed files with 11 additions and 11 deletions

View file

@ -20,7 +20,7 @@ pub const Queue = *opaque {
Impl.queueSetLabel(queue, label);
}
pub inline fn submit(queue: Queue, command_count: u32, commands: [*]CommandBuffer) void {
pub inline fn submit(queue: Queue, command_count: u32, commands: [*]*CommandBuffer) void {
Impl.queueSubmit(queue, command_count, commands);
}