mach: add mach.Atlas implementation from Mitchell Hashimoto

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2023-07-04 06:56:36 -07:00
parent 3115ffa5dc
commit a1b4c03f9d
3 changed files with 480 additions and 0 deletions

View file

@ -16,6 +16,8 @@ pub const gfx2d = struct {
};
pub const math = @import("math.zig");
pub const Atlas = @import("atlas/Atlas.zig");
// Engine exports
pub const App = @import("engine.zig").App;
pub const Module = @import("engine.zig").Module;
@ -24,6 +26,7 @@ const std = @import("std");
test {
std.testing.refAllDeclsRecursive(gfx);
std.testing.refAllDeclsRecursive(Atlas);
_ = ecs;
_ = earcut;
}