diff options
author | 2023-09-04 03:28:45 +0200 | |
---|---|---|
committer | 2023-09-04 03:28:45 +0200 | |
commit | bb49a22996f39e32c3ced0c2d80c2137aed7a0ea (patch) | |
tree | 80559ea7e79458b20acb390b08b9dcf555dba4d4 /renderer/Cargo.toml | |
parent | 2c51e3478bfb1c53ea7e63b1f1dc74ec46faa748 (diff) | |
download | iced-bb49a22996f39e32c3ced0c2d80c2137aed7a0ea.tar.gz iced-bb49a22996f39e32c3ced0c2d80c2137aed7a0ea.tar.bz2 iced-bb49a22996f39e32c3ced0c2d80c2137aed7a0ea.zip |
Enable WebGPU backend in `wgpu` by default instead of WebGL
Instead, we expose a new `webgl` feature.
Diffstat (limited to 'renderer/Cargo.toml')
-rw-r--r-- | renderer/Cargo.toml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/renderer/Cargo.toml b/renderer/Cargo.toml index 89326d73..2c88cf31 100644 --- a/renderer/Cargo.toml +++ b/renderer/Cargo.toml @@ -17,6 +17,7 @@ svg = ["iced_tiny_skia/svg", "iced_wgpu?/svg"] geometry = ["iced_graphics/geometry", "iced_tiny_skia/geometry", "iced_wgpu?/geometry"] tracing = ["iced_wgpu?/tracing"] web-colors = ["iced_wgpu?/web-colors"] +webgl = ["iced_wgpu?/webgl"] [dependencies] raw-window-handle = "0.5" |