mach: VertexWriter fixes (#633)

* mach: VertexWriter fixes
* mach: Reference decls in gfx
* remove comptime block from refAllDecls as is redundant
This commit is contained in:
Keith Chambers 2022-11-30 11:27:00 -05:00 committed by GitHub
parent f331597bc2
commit c151222011
Failed to generate hash of commit
2 changed files with 12 additions and 13 deletions

View file

@ -9,6 +9,7 @@ pub const ecs = @import("ecs");
pub const sysaudio = @import("sysaudio");
pub const sysjs = @import("sysjs");
pub const earcut = @import("earcut");
pub const gfx = @import("gfx/util.zig");
// Engine exports
pub const App = @import("engine.zig").App;
@ -22,4 +23,5 @@ test {
// testing.refAllDeclsRecursive(Core);
// testing.refAllDeclsRecursive(Timer);
testing.refAllDeclsRecursive(ResourceManager);
testing.refAllDeclsRecursive(gfx);
}