Improve README.md files
This commit is contained in:
parent
6de9d89b65
commit
235d77713d
3 changed files with 7 additions and 1 deletions
|
@ -33,6 +33,8 @@ You can opt-in to the using [`egui_wgpu`](https://github.com/emilk/egui/tree/mas
|
|||
## Alternatives
|
||||
`eframe` is not the only way to write an app using `egui`! You can also try [`egui-miniquad`](https://github.com/not-fl3/egui-miniquad), [`bevy_egui`](https://github.com/mvlabat/bevy_egui), [`egui_sdl2_gl`](https://github.com/ArjunNair/egui_sdl2_gl), and others.
|
||||
|
||||
You can also use `egui_glow` and [`winit`](https://github.com/rust-windowing/winit) to build your own app as demonstrated in <https://github.com/emilk/egui/blob/master/egui_glow/examples/pure_glow.rs>.
|
||||
|
||||
|
||||
## Problems with running egui on the web
|
||||
`eframe` uses WebGL (via [`glow`](https://crates.io/crates/glow)) and WASM, and almost nothing else from the web tech stack. This has some benefits, but also produces some challenges and serious downsides.
|
||||
|
|
|
@ -6,6 +6,6 @@
|
|||

|
||||

|
||||
|
||||
This crates provides bindings between [`egui`](https://github.com/emilk/egui) and [winit](https://crates.io/crates/winit).
|
||||
This crates provides bindings between [`egui`](https://github.com/emilk/egui) and [`winit`](https://crates.io/crates/winit).
|
||||
|
||||
The library translates winit events to egui, handled copy/paste, updates the cursor, open links clicked in egui, etc.
|
||||
|
|
|
@ -13,3 +13,7 @@ Run it locally with `cargo run --release -p egui_demo_app`.
|
|||
```
|
||||
|
||||
`egui_demo_app` uses [`egui_demo_lib`](https://github.com/emilk/egui/tree/master/egui_demo_lib).
|
||||
|
||||
|
||||
## Running with `wgpu` backend
|
||||
`(cd egui_demo_app && cargo r --features wgpu)`
|
||||
|
|
Loading…
Reference in a new issue