exellian / rui

Rust framework for building modern ui
3 stars 0 forks source link

run method (see. Instance struct). This method is the heart of the system and starts up all necessary threads for running an application. It should support a single threaded but also a multi threaded runtime environment for rendering and event handling. #5

Closed exellian closed 2 years ago

exellian commented 2 years ago

https://github.com/rust-windowing/winit/issues/1199#issuecomment-1073924233

exellian commented 2 years ago

Moving on and just implementing a multithreaded version. The single-threaded approach is currently only possible in a blocking way which doesn't meet the requirements. In the future we will probably support a single thread version, but it requires a different windowing library or async support in winit.