1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-31 13:50:04 -04:00

Split out new crate egui-winit from egui_glium (#735)

This commit is contained in:
Emil Ernerfeldt
2021-09-28 17:33:28 +02:00
committed by GitHub
parent ba0e3780a1
commit 1b36863248
27 changed files with 1003 additions and 616 deletions

View File

@@ -36,7 +36,7 @@ parking_lot = { version = "0.11", optional = true } # Using parking_lot over std
serde = { version = "1", features = ["derive"], optional = true }
[features]
default = ["multi_threaded", "default_fonts"]
default = ["default_fonts", "multi_threaded"]
# If set, epaint will use `include_bytes!` to bundle some fonts.
# If you plan on specifying your own fonts you may disable this feature.
@@ -55,4 +55,5 @@ persistence = ["serde", "emath/serde"]
single_threaded = ["atomic_refcell"]
# Only needed if you plan to use the same fonts from multiple threads.
# It comes with a minor performance impact.
multi_threaded = ["parking_lot"]