![]() * eframe::run_native: return errors instead of crashing * Detect and handle glutin errors * egui_demo_app: silence wgpu log spam * Add trace logs for why eframe is shutting down * Fix: only save App state once on Mac * Handle Winit failure * Log where we load app state from * Don't panic on zero-sized window * Clamp loaded window size to not be too tiny to see * Simplify code: more shared code in window_builder * Improve code readability * Fix wasm32 build * fix android * Update changelog |
||
---|---|---|
.. | ||
src | ||
Cargo.toml | ||
README.md |
egui demo app
This app demonstrates egui
and eframe
.
View the demo app online at https://egui.rs.
Run it locally with cargo run --release -p egui_demo_app
.
egui_demo_app
can be compiled to WASM and viewed in a browser locally with:
./sh/start_server.sh &
./sh/build_demo_web.sh --open
egui_demo_app
uses egui_demo_lib
.
Running with wgpu
backend
(cd egui_demo_app && cargo r --features wgpu)