adding public queue functions and worker base

This commit is contained in:
2025-11-12 17:40:54 +01:00
parent d03515c335
commit 9a0cc0d03d
9 changed files with 96 additions and 17 deletions

View File

@@ -19,7 +19,7 @@ dispatch_table: *const DispatchTable,
vtable: *const VTable,
pub const VTable = struct {
createQueue: *const fn (std.mem.Allocator, *const Self, u32, u32, vk.DeviceQueueCreateFlags) VkError!*Queue,
createQueue: *const fn (std.mem.Allocator, *Self, u32, u32, vk.DeviceQueueCreateFlags) VkError!*Queue,
destroyQueue: *const fn (*Queue, std.mem.Allocator) VkError!void,
};