2021-10-18 21:13:32 +00:00
# egui_glow
[](https://crates.io/crates/egui_glow)
[](https://docs.rs/egui_glow)


2022-04-13 20:05:19 +00:00
This crates provides bindings between [`egui` ](https://github.com/emilk/egui ) and [glow ](https://crates.io/crates/glow ) which allows you to:
* Render egui using glow on both native and web.
* Write cross platform native egui apps (with the `winit` feature).
To write web apps using `glow` you should use either [`eframe` ](https://github.com/emilk/egui/tree/master/eframe ) or [`egui_web` ](https://github.com/emilk/egui/tree/master/egui_web ) (both uses `egui_glow` for rendering, by default).
2021-10-18 21:13:32 +00:00
To use on Linux, first run:
```
sudo apt-get install libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev
```
2022-04-13 20:05:19 +00:00
This crate optionally depends on [`egui-winit` ](https://github.com/emilk/egui/tree/master/egui-winit ).