Fix egui_demo_app missing wgpu backends (#7492)

* This was broken in https://github.com/emilk/egui/pull/7344
This commit is contained in:
Lucas Meurer 2025-09-03 12:55:02 +02:00 committed by GitHub
parent 0a81372cfd
commit ab8dcee7e7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -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":