[Soft] fixing command buffer creation
Mirror Gitea refs to GitHub / mirror (push) Successful in 13s
Test / build_and_test (push) Successful in 2m2s
Build / build (push) Successful in 3m49s

This commit is contained in:
2026-07-24 00:42:01 +02:00
parent 9acfc440af
commit 6d66daef29
+2 -1
View File
@@ -128,9 +128,10 @@ pub fn create(device: *base.Device, allocator: std.mem.Allocator, info: *const v
self.* = .{ self.* = .{
.interface = interface, .interface = interface,
.command_allocator = .init(interface.host_allocator.allocator()), .command_allocator = undefined,
.commands = .empty, .commands = .empty,
}; };
self.command_allocator = .init(interface.host_allocator.allocator());
return self; return self;
} }