From 02ba76a95b4ecdffcf2a79f70d32ad8ff72f9d7b Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Tue, 17 Jan 2023 00:18:37 -0700 Subject: [PATCH] shaderexp: update to latest mach/core API Signed-off-by: Stephen Gutekanst --- shaderexp/main.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shaderexp/main.zig b/shaderexp/main.zig index 0b71c6ea..cbc79d13 100755 --- a/shaderexp/main.zig +++ b/shaderexp/main.zig @@ -25,7 +25,7 @@ fragment_shader_code: [:0]const u8, last_mtime: i128, pub fn init(app: *App) !void { - app.core = try mach.Core.init(allocator, .{ .title = "shaderexp" }); + try app.core.init(allocator, .{ .title = "shaderexp" }); var fragment_file: std.fs.File = undefined; var last_mtime: i128 = undefined;