1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-26 14:49:06 -04:00

Add egui_glow backend as alternative to egui_glium (#685)

This commit is contained in:
AlexApps99
2021-10-19 10:13:32 +13:00
committed by GitHub
parent df3aeab434
commit 877e89f2ec
13 changed files with 1685 additions and 3 deletions

View File

@@ -36,6 +36,10 @@ Puts an egui app inside the web browser by compiling to WASM and binding to the
### `egui_glium`
Puts an egui app inside a native window on your laptop. Paints the triangles that egui outputs using [glium](https://github.com/glium/glium).
### `egui_glow`
Puts an egui app inside a native window on your laptop. Paints the triangles that egui outputs using [glow](https://github.com/grovesNL/glow).
An alternative to `egui_glium`, not used by `eframe` at this time.
### `eframe`
A wrapper around `egui_web` + `egui_glium`, so you can compile the same app for either web or native.