egui/epi/README.md

14 lines
1.1 KiB
Markdown
Raw Normal View History

2021-07-29 20:04:20 +00:00
# `epi`: the [`egui`](https://github.com/emilk/egui) application programming interface
2020-12-29 13:15:46 +00:00
2021-07-29 20:04:20 +00:00
[![Latest version](https://img.shields.io/crates/v/epi.svg)](https://crates.io/crates/epi)
[![Documentation](https://docs.rs/epi/badge.svg)](https://docs.rs/epi)
[![unsafe forbidden](https://img.shields.io/badge/unsafe-forbidden-success.svg)](https://github.com/rust-secure-code/safety-dance/)
![MIT](https://img.shields.io/badge/license-MIT-blue.svg)
![Apache](https://img.shields.io/badge/license-Apache-blue.svg)
2020-12-29 13:15:46 +00:00
2021-07-29 20:04:20 +00:00
`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)).
2021-07-29 20:04:20 +00:00
This crate is only for those that want to write an app that can be compiled both natively and for the web.