-
Hi egui community, I'm working on an app using glutin crate and want to use egui for UIs of it. But I noticed that egui (egui_glium) launches dedicated winit's EventLoop in main thread and doesn't expose it. Because my app already launches winit's EventLoop in main thread, the two conflicts and couldn't run. So I'm finding a way to use egui in EventLoop of my app. Do you know anyone? P.S. I found "Integrating with egui" on docs but it is slightly abstract for me. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can use |
Beta Was this translation helpful? Give feedback.
You can use
egui_glium
with your own even loop: https://github.com/emilk/egui/blob/master/egui_glium/examples/pure.rs