{glfw,mach}: remove dead code

This commit is contained in:
Ali Chraghi 2023-01-15 11:14:33 +03:30 committed by Stephen Gutekanst
parent 30d614c377
commit 10d5f344e3
2 changed files with 0 additions and 12 deletions

View file

@ -31,11 +31,6 @@ fn testStepShared(b: *Builder, mode: std.builtin.Mode, target: std.zig.CrossTarg
return main_tests.run();
}
pub const LinuxWindowManager = enum {
X11,
Wayland,
};
pub const Options = struct {
/// Not supported on macOS.
vulkan: bool = true,

View file

@ -49,12 +49,5 @@ pub fn App(
app.engine.tick();
return false;
}
pub fn resize(app: *@This(), width: u32, height: u32) !void {
_ = app;
_ = width;
_ = height;
// TODO: send resize messages to ECS modules
}
};
}