fix a couple more memory leaks

This commit is contained in:
Mitchell Hashimoto
2022-10-24 16:17:18 -07:00
parent ef57e1e56a
commit bcf485342e
2 changed files with 6 additions and 0 deletions

View File

@@ -632,6 +632,7 @@ pub fn destroy(self: *Window) void {
self.font_group.deinit(self.alloc);
self.font_lib.deinit();
self.alloc.destroy(self.font_group);
self.alloc_io_arena.deinit();
self.alloc.destroy(self.renderer_state.mutex);