DVUI

Parameters

#
self:ChildOsWindow
ChildOsWindow
alloc:std.mem.Allocator
std.mem.Allocator

Source

Implementation

#
pub fn deinit(self: ChildOsWindow, alloc: std.mem.Allocator) void {
        self.backend.deinit();
        self.dvui_win.deinit();
        alloc.destroy(self.backend);
        alloc.destroy(self.dvui_win);
    }