diff options
author | 2021-08-25 16:19:00 +0700 | |
---|---|---|
committer | 2021-08-25 16:19:00 +0700 | |
commit | 2d65621a3b680457e689b93c800e74f726ffc175 (patch) | |
tree | 283aaa8245b8cb41d1f4a23709ba13bbe849d4a4 /examples/integration_wgpu/src/scene.rs | |
parent | 8333b8f88ceaa53c361eb6726b2b7dac6cd2c402 (diff) | |
parent | acc47a595300ff9bb9cae1e26c2d41135cde8ae8 (diff) | |
download | iced-2d65621a3b680457e689b93c800e74f726ffc175.tar.gz iced-2d65621a3b680457e689b93c800e74f726ffc175.tar.bz2 iced-2d65621a3b680457e689b93c800e74f726ffc175.zip |
Merge pull request #1000 from PolyMeilex/wgpu-0.10
wgpu: Update to 0.10
Diffstat (limited to 'examples/integration_wgpu/src/scene.rs')
-rw-r--r-- | examples/integration_wgpu/src/scene.rs | 2 |
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 { |