Skip to content

Commit aa22de0

Browse files
committed
Default to wgpu renderer
1 parent 2307176 commit aa22de0

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

Cargo.lock

Lines changed: 8 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ targets = ["x86_64-unknown-linux-gnu", "wasm32-unknown-unknown"]
1313
[dependencies]
1414
egui = "0.33.0"
1515
eframe = { version = "0.33.0", default-features = false, features = [
16-
"accesskit", # Make egui compatible with screen readers. NOTE: adds a lot of dependencies.
17-
"default_fonts", # Embed the default egui fonts.
18-
"glow", # Use the glow rendering backend. Alternative: "wgpu".
19-
"persistence", # Enable restoring app state when restarting the app.
20-
"wayland", # To support Linux (and CI)
21-
"x11", # To support older Linux distributions (restores one of the default features)
16+
"accesskit", # Make egui compatible with screen readers. NOTE: adds a lot of dependencies.
17+
"default_fonts", # Embed the default egui fonts.
18+
"persistence", # Enable restoring app state when restarting the app.
19+
"wayland", # To support Linux (and CI)
20+
"wgpu", # Use the wgpu rendering backend. Alternative: "glow".
21+
"x11", # To support older Linux distributions (restores one of the default features)
2222
] }
2323
log = "0.4.27"
2424

@@ -53,7 +53,6 @@ opt-level = 2
5353
# eframe = { path = "../egui/crates/eframe" }
5454

5555

56-
5756
# ----------------------------------------------------------------------------------------
5857
# Lints:
5958

0 commit comments

Comments
 (0)