settle module state initialization

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2024-09-22 22:53:02 -07:00 committed by Emi Gutekanst
parent 0e12857154
commit 14ccd5a93c
3 changed files with 12 additions and 11 deletions

View file

@ -62,9 +62,10 @@ pub fn init(
const pipeline = core.device.createRenderPipeline(&pipeline_descriptor);
// Store our render pipeline in our module's state, so we can access it later on.
// TODO(object): module-state-init
app.title_timer = try mach.time.Timer.start();
app.pipeline = pipeline;
app.* = .{
.title_timer = try mach.time.Timer.start(),
.pipeline = pipeline,
};
// TODO(object): window-title
// try updateWindowTitle(core);