rework of the queue

This commit is contained in:
2025-11-21 23:57:35 +01:00
parent 967451a458
commit 5df8677051
11 changed files with 220 additions and 53 deletions

19
src/soft/Executor.zig git.filemode.normal_file
View File

@@ -0,0 +1,19 @@
const std = @import("std");
const vk = @import("vulkan");
const cmd = @import("base").commands;
const Self = @This();
pub fn init() Self {
return .{};
}
pub fn deinit(self: *Self) void {
_ = self;
}
pub fn dispatch(self: *Self, command: *const cmd.Command) void {
_ = self;
_ = command;
}