test
Build / build (push) Successful in 53s
Test / build_and_test (push) Has been cancelled

This commit is contained in:
2026-05-10 01:04:00 +02:00
parent d494b56799
commit 7d226087e4
+3 -2
View File
@@ -106,8 +106,9 @@ pub fn execute(self: *Self, device: *ExecutionDevice) void {
} }
pub fn begin(interface: *Interface, _: *const vk.CommandBufferBeginInfo) VkError!void { pub fn begin(interface: *Interface, _: *const vk.CommandBufferBeginInfo) VkError!void {
// No-op const self: *Self = @alignCast(@fieldParentPtr("interface", interface));
_ = interface; self.commands.clearAndFree(self.command_allocator.allocator());
_ = self.command_allocator.reset(.free_all);
} }
pub fn end(interface: *Interface) VkError!void { pub fn end(interface: *Interface) VkError!void {