fixing lots of copy tests issues
Test / build_and_test (push) Successful in 33s
Build / build (push) Successful in 1m0s

This commit is contained in:
2026-05-24 22:04:10 +02:00
parent bd2774b7f9
commit 5a91956939
10 changed files with 64 additions and 51 deletions
+4 -2
View File
@@ -47,8 +47,10 @@ pub fn create(device: *base.Device, allocator: std.mem.Allocator, info: *const v
spv.Module.ModuleError.OutOfMemory => return VkError.OutOfHostMemory,
else => {
std.log.scoped(.@"SPIR-V module").err("module creation catched a '{s}'", .{@errorName(err)});
if (@errorReturnTrace()) |trace| {
std.debug.dumpErrorReturnTrace(trace);
if (comptime base.config.logs == .verbose) {
if (@errorReturnTrace()) |trace| {
std.debug.dumpErrorReturnTrace(trace);
}
}
return VkError.ValidationFailed;
},