adding some function pfn implementations

This commit is contained in:
2025-11-25 22:28:17 +01:00
parent 0c2ab2b539
commit e34714930c
6 changed files with 437 additions and 45 deletions

View File

@@ -39,7 +39,7 @@ fn clearColorImage(data: *const cmd.CommandClearColorImage) VkError!void {
_ = range;
_ = &memory_map;
std.log.scoped(.commandExecutor).warn("FIXME: implement image clear", .{});
base.logger.fixme("Implement image clear", .{});
memory.unmap();
}

View File

@@ -48,5 +48,17 @@ comptime {
}
test {
//std.testing.refAllDeclsRecursive(@This());
std.testing.refAllDecls(base);
std.testing.refAllDecls(SoftInstance);
std.testing.refAllDecls(SoftDevice);
std.testing.refAllDecls(SoftPhysicalDevice);
std.testing.refAllDecls(SoftQueue);
std.testing.refAllDecls(SoftBuffer);
std.testing.refAllDecls(SoftCommandBuffer);
std.testing.refAllDecls(SoftCommandPool);
std.testing.refAllDecls(SoftDeviceMemory);
std.testing.refAllDecls(SoftFence);
std.testing.refAllDecls(SoftImage);
std.testing.refAllDecls(SoftImageView);
std.testing.refAllDecls(Executor);
}