Skip to content

Commit 52b3f69

Browse files
authored
Merge pull request #2065 from iced-rs/update-wgpu
Update `wgpu` to `0.17`
2 parents c9bd487 + d518e7d commit 52b3f69

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
### Changed
9+
- Updated `wgpu` to `0.17`. [#2065](https://github.com/iced-rs/iced/pull/2065)
10+
11+
Many thanks to...
12+
13+
- Add your <name> here
814

915
## [0.10.0] - 2023-07-28
1016
### Added

examples/integration/src/main.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ pub fn main() -> Result<(), Box<dyn std::error::Error>> {
8282
futures::futures::executor::block_on(async {
8383
let adapter = wgpu::util::initialize_adapter_from_env_or_default(
8484
&instance,
85-
backend,
8685
Some(&surface),
8786
)
8887
.await

wgpu/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ svg = ["resvg"]
1414
web-colors = ["iced_graphics/web-colors"]
1515

1616
[dependencies]
17-
wgpu = "0.16"
18-
glyphon = "0.3"
17+
wgpu = "0.17"
18+
glyphon = { git = "https://github.com/grovesNL/glyphon.git", rev = "20f0f8fa80e0d0df4c63634ce9176fa489546ca9" }
1919
raw-window-handle = "0.5"
2020
guillotiere = "0.6"
2121
futures = "0.3"
@@ -25,7 +25,7 @@ rustc-hash = "1.1"
2525
log = "0.4"
2626

2727
[target.'cfg(target_arch = "wasm32")'.dependencies]
28-
wgpu = { version = "0.16", features = ["webgl"] }
28+
wgpu = { version = "0.17", features = ["webgl"] }
2929

3030
[dependencies.twox-hash]
3131
version = "1.6"

0 commit comments

Comments
 (0)