Fix egui_demo_app missing wgpu backends (#7492)
* This was broken in https://github.com/emilk/egui/pull/7344
This commit is contained in:
parent
0a81372cfd
commit
ab8dcee7e7
|
|
@ -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":
|
||||
|
|
|
|||
Loading…
Reference in New Issue