summaryrefslogtreecommitdiffstats
path: root/examples/integration_wgpu/src/scene.rs
diff options
context:
space:
mode:
authorLibravatar Poly <marynczak.bartlomiej@gmail.com>2021-08-19 03:06:35 +0200
committerLibravatar Poly <marynczak.bartlomiej@gmail.com>2021-08-19 03:06:38 +0200
commit18753b77fc7a64292748fb303fa75fde1dd65f4d (patch)
tree13f1cc6a528ee1cffb2614ad7285d06c8223e84c /examples/integration_wgpu/src/scene.rs
parent663c3685da4140c9224ae6b189245c991508624b (diff)
downloadiced-18753b77fc7a64292748fb303fa75fde1dd65f4d.tar.gz
iced-18753b77fc7a64292748fb303fa75fde1dd65f4d.tar.bz2
iced-18753b77fc7a64292748fb303fa75fde1dd65f4d.zip
wgpu: Update to 0.10
Diffstat (limited to 'examples/integration_wgpu/src/scene.rs')
-rw-r--r--examples/integration_wgpu/src/scene.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/integration_wgpu/src/scene.rs b/examples/integration_wgpu/src/scene.rs
index 3e8277c8..0b2b1fcd 100644
--- a/examples/integration_wgpu/src/scene.rs
+++ b/examples/integration_wgpu/src/scene.rs
@@ -79,7 +79,7 @@ fn build_pipeline(device: &wgpu::Device) -> wgpu::RenderPipeline {
color: wgpu::BlendComponent::REPLACE,
alpha: wgpu::BlendComponent::REPLACE,
}),
- write_mask: wgpu::ColorWrite::ALL,
+ write_mask: wgpu::ColorWrites::ALL,
}],
}),
primitive: wgpu::PrimitiveState {