forked from mirror/vulkan-zig
Remove feature/extension selection
When an extension is promoted to core, the tags of all the relevant items are changed. To allow for proper feature/extension selection, all these items would need to be fixed up manually, which i think is too much work for now
This commit is contained in:
@@ -121,10 +121,7 @@ pub fn main() !void {
|
||||
defer file.close();
|
||||
|
||||
const stdout = std.io.getStdOut().writer();
|
||||
try vkgen.generate(&prof_alloc.allocator, file.reader(), stdout, .{
|
||||
.feature_level = .{.major = 1, .minor = 0},
|
||||
.extensions = .all,
|
||||
});
|
||||
try vkgen.generate(&prof_alloc.allocator, file.reader(), stdout);
|
||||
|
||||
std.debug.warn("Total memory usage: {} KiB\n", .{@divTrunc(prof_alloc.max_usage, 1024)});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user