Open jcbritobr opened 1 year ago
I had a similar error in my hello world application on ubuntu using rust 1.75 and egui 0.24. Upgrading to egui 0.25 fixed it .
Can anyone guide me that how should i fix this error. I am using WSL to run the rust.
use eframe::egui;
fn main() -> Result<(), eframe::Error> {
let options = eframe::NativeOptions {
viewport: egui::ViewportBuilder::default().with_inner_size([320.0, 240.0]),
..Default::default()
};
eframe::run_simple_native("Rust Maven egui App", options, move |ctx, _frame| {
egui::CentralPanel::default().show(ctx, |_ui| {});
})
}
/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winit-0.30.5/src/platform_impl/linux/wayland/event_loop/mod.rs", error: WaylandError(Connection(NoCompositor)) }))
Is this using the glow
or wgpu
backend? (run with RUST_LOG=debug
and it will be printed)
Is this using the
glow
orwgpu
backend? (run withRUST_LOG=debug
and it will be printed)
it is solved bro. it was actually problem with the ubuntu updates as i updated to latest ubuntu in WSL2 windows but some issues was still there( i just update things accordingly).
MESA: error: ZINK: failed to choose pdev glx: failed to create drisw screen
it is a warning, because the program has been execute successfully. Thanks for quick response.
Hello, good afternoon, I'm getting this warning after closing a eframe application on desktop
fedora 38 x64, 6.4.15-200.fc38.x86_64 linux rust 1.72.1 egui 0.23.0