working on queues

This commit is contained in:
2025-11-09 21:06:33 +01:00
parent b4b88ac2db
commit b2d964c96a
10 changed files with 84 additions and 39 deletions

14
src/soft/SoftQueue.zig git.filemode.normal_file
View File

@@ -0,0 +1,14 @@
const std = @import("std");
const vk = @import("vulkan");
const base = @import("base");
const SoftDeviceMemory = @import("SoftDeviceMemory.zig");
const SoftFence = @import("SoftFence.zig");
const VkError = base.VkError;
const Self = @This();
pub const Interface = base.Queue;
interface: Interface,
mutex: std.Thread.Mutex,