embedded: fix build

This commit is contained in:
Mitchell Hashimoto
2023-02-23 17:27:53 -08:00
parent e4b76b5974
commit cb412425b2

View File

@ -83,6 +83,12 @@ pub const App = struct {
surface.deinit();
self.core_app.alloc.destroy(surface);
}
pub fn redrawSurface(self: *App, surface: *Surface) void {
_ = self;
_ = surface;
// No-op, we use a threaded interface so we're constantly drawing.
}
};
pub const Surface = struct {