egui/examples/hello_world_par/README.md
Emil Ernerfeldt 8ce0e1c520
Avoid deadlocks by using lambdas for context lock (#2625)
ctx.input().key_pressed(Key::A) -> ctx.input(|i| i.key_pressed(Key::A))
2023-01-25 10:24:23 +01:00

116 B

This example shows that you can use egui in parallel from multiple threads.

cargo run -p hello_world_par