Questions tagged [egui]

egui (pronounced "e-gooey") is a simple, fast, and highly portable immediate mode GUI library for Rust.

47 questions
-1
votes
1 answer

Rust clone/ copy issues

trying to wrap my head around how to do some simple plotting in egui. I have a data member in myapp struct that is a Vec::. Is there a way to pass that into Points::new(Values::from_values(data.to_vec()) without creating a copy of the…
Buzzzz
  • 887
  • 3
  • 11
  • 18
-2
votes
1 answer

Trying to implement egui with OpenGL and Sdl2 in rust. "Could not create GL context: GLXBadProfileARB"

I am trying to use this library https://github.com/ArjunNair/egui_sdl2_gl in my rust project. Before I tried to implement it, my program worked as expected (just a black window). Now I am getting a runtime error from my OpenGL-context and I can't…
1 2 3
4