tek/tui
2025-01-18 15:37:53 +01:00
..
examples fixed up some parsing and removed some edn mentions 2025-01-18 01:56:44 +01:00
src remove Atom. almost there 2025-01-18 15:37:53 +01:00
Cargo.toml perf counter for render 2025-01-14 16:45:58 +01:00
README.md move edn_view into layout 2025-01-07 21:41:51 +01:00

tek_tui

the Tui struct (the engine) implements the tek_input::Input and tek_output::Output traits.

at launch, the Tui engine spawns two threads, a render thread and an input thread. (the application may spawn further threads, such as a jack thread.)

all threads communicate using shared ownership, Arc<RwLock> and Arc<Atomic>. the engine and application instances are expected to be wrapped in Arc<RwLock>; internally, those synchronization mechanisms may be used liberally.