summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2022-11-01 19:53:03 +0100
committerLibravatar GitHub <noreply@github.com>2022-11-01 19:53:03 +0100
commit37c5b15f62ef44e52e49032a2972a76aa653436a (patch)
tree4029b2c7cdd2f1cd2e5df24b20a0c2059b814fa5 /examples
parentac6a3cf8eb77df69cbb6538900786faca778cf05 (diff)
parent8f6af6bbfc7a14e9dc71b20ccb9045597bbccbad (diff)
downloadiced-37c5b15f62ef44e52e49032a2972a76aa653436a.tar.gz
iced-37c5b15f62ef44e52e49032a2972a76aa653436a.tar.bz2
iced-37c5b15f62ef44e52e49032a2972a76aa653436a.zip
Merge pull request #1462 from wyatt-herkamp/master
Update `wgpu` to `0.14` and `wgpu_glyph` to `0.18`
Diffstat (limited to 'examples')
-rw-r--r--examples/integration_wgpu/src/main.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/integration_wgpu/src/main.rs b/examples/integration_wgpu/src/main.rs
index 69d46c3e..70f9a48b 100644
--- a/examples/integration_wgpu/src/main.rs
+++ b/examples/integration_wgpu/src/main.rs
@@ -119,6 +119,7 @@ pub fn main() {
width: physical_size.width,
height: physical_size.height,
present_mode: wgpu::PresentMode::AutoVsync,
+ alpha_mode: wgpu::CompositeAlphaMode::Auto,
},
);
@@ -213,6 +214,7 @@ pub fn main() {
width: size.width,
height: size.height,
present_mode: wgpu::PresentMode::AutoVsync,
+ alpha_mode: wgpu::CompositeAlphaMode::Auto
},
);