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:
Robin Voetter
2020-06-30 03:34:07 +02:00
parent cd403e57ff
commit 1d3a1101aa
2 changed files with 5 additions and 120 deletions

View File

@@ -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)});
}