
* Make egui_glow and opt-in backend for eframe * Add egui_glow to Cargo.toml and to CI * Reference egui_glow where egui_glium is mentioned * Remove path-patches from root Cargo.toml * Add instructions on how to enable the glow backend of eframe
13 lines
1.1 KiB
Markdown
13 lines
1.1 KiB
Markdown
# `epi`: the [`egui`](https://github.com/emilk/egui) application programming interface
|
|
|
|
[](https://crates.io/crates/epi)
|
|
[](https://docs.rs/epi)
|
|
[](https://github.com/rust-secure-code/safety-dance/)
|
|

|
|

|
|
|
|
`epi` is a backend-agnostic interface for writing apps using `egui` (a platform agnostic GUI library).
|
|
|
|
This crate provides a common interface for programming an app using egui, which can then be easily plugged into [`eframe`](https://github.com/emilk/egui/tree/master/eframe) (which is a wrapper over [`egui_web`](https://github.com/emilk/egui/tree/master/egui_web), [`egui_glium`](https://github.com/emilk/egui/tree/master/egui_glium) and [`egui_glow`](https://github.com/emilk/egui/tree/master/egui_glow)).
|
|
|
|
This crate is only for those that want to write an app that can be compiled both natively and for the web.
|