feat(Renderer): update interface functions to start supporting buffered rendering
Some checks failed
Zig Project Action / Lint, Spell-check and test zig project (push) Failing after 30s

This commit is contained in:
2024-11-11 17:01:59 +01:00
parent d2d655c829
commit ed5873de63
5 changed files with 124 additions and 19 deletions

View File

@@ -1,5 +1,5 @@
//! Dynamic dispatch for widget implementations.
//! Each widget should at last implement these functions:
//! Each widget should at least implement these functions:
//! - handle(this: *@This(), event: Event) ?Event {}
//! - render(this: *@This(), renderer: *Renderer) !void {}
//! - deinit(this: *@This()) void {}