From ab8dcee7e716279b5fcc923128b6f2e68e13ee09 Mon Sep 17 00:00:00 2001 From: Lucas Meurer Date: Wed, 3 Sep 2025 12:55:02 +0200 Subject: [PATCH] Fix egui_demo_app missing wgpu backends (#7492) * This was broken in https://github.com/emilk/egui/pull/7344 --- crates/egui_demo_app/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/egui_demo_app/Cargo.toml b/crates/egui_demo_app/Cargo.toml index 5868ed48..f4c6e286 100644 --- a/crates/egui_demo_app/Cargo.toml +++ b/crates/egui_demo_app/Cargo.toml @@ -69,7 +69,8 @@ bytemuck = { workspace = true, optional = true } puffin = { workspace = true, optional = true } puffin_http = { workspace = true, optional = true } # Enable both WebGL & WebGPU when targeting the web (these features have no effect when not targeting wasm32) -wgpu = { workspace = true, features = ["webgpu", "webgl"], optional = true } +# Also enable the default features so we have a supported backend for every platform. +wgpu = { workspace = true, features = ["default", "webgpu", "webgl"], optional = true } # feature "http":