1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-02 06:40:06 -04:00

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

View File

@@ -69,7 +69,8 @@ bytemuck = { workspace = true, optional = true }
puffin = { workspace = true, optional = true } puffin = { workspace = true, optional = true }
puffin_http = { 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) # 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": # feature "http":