Opcode rendering

This commit is contained in:
Robin Voetter
2020-08-15 23:51:37 +02:00
parent 94ad431332
commit bcda3eeb11
3 changed files with 32 additions and 8 deletions

View File

@@ -69,5 +69,5 @@ pub fn generate(allocator: *Allocator, spec_jsons: []const []const u8, writer: a
}
const merged = try mergeRegistries(&arena.allocator, core_registry, ext_registries);
try renderSpirv(writer, &merged);
try renderSpirv(writer, &arena.allocator, &merged);
}