IO thread has more state setup

This commit is contained in:
Mitchell Hashimoto
2022-11-03 15:07:51 -07:00
parent 35c1decd58
commit 9b3d22e55e
5 changed files with 189 additions and 7 deletions

View File

@@ -11,3 +11,9 @@ screen_size: renderer.ScreenSize,
/// The app configuration.
config: *const Config,
/// The render state. The IO implementation can modify anything here. The
/// window thread will setup the initial "terminal" pointer but the IO impl
/// is free to change that if that is useful (i.e. doing some sort of dual
/// terminal implementation.)
renderer_state: *renderer.State,