rework of the queue
This commit is contained in:
19
src/soft/Executor.zig
git.filemode.normal_file
19
src/soft/Executor.zig
git.filemode.normal_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;
|
||||
}
|
||||
Reference in New Issue
Block a user