render: remove getters from Surface, reimplement buffer sharing with Send+Sync

This commit is contained in:
2024-12-02 19:36:17 +01:00
parent f789f6ded9
commit 6cafdcfa45
5 changed files with 247 additions and 114 deletions

View File

@@ -19,6 +19,10 @@ fn main() {
log::info!("Board: {}", core::any::type_name_of_val(&board));
log::info!("Creating tasks");
let mut system = board.system_tasks();
log::info!("System scheduler: {}", core::any::type_name_of_val(&system));
let output = board.output();
log::info!("Output: {}", core::any::type_name_of_val(&output));