diff options
author | 2023-10-27 03:41:16 +0200 | |
---|---|---|
committer | 2023-10-27 03:41:16 +0200 | |
commit | 8e6f131a06e7d798c535a0a45996c62dbc1d56c0 (patch) | |
tree | 8a075bfafa53c9e15ba19f4e21434c929ffb9281 /wgpu/src/backend.rs | |
parent | f1b1344d59fa7354615f560bd25ed01ad0c9f865 (diff) | |
parent | a00ebcde3d698bc6b59a7a258e91c3612a6faaaf (diff) | |
download | iced-8e6f131a06e7d798c535a0a45996c62dbc1d56c0.tar.gz iced-8e6f131a06e7d798c535a0a45996c62dbc1d56c0.tar.bz2 iced-8e6f131a06e7d798c535a0a45996c62dbc1d56c0.zip |
Merge pull request #2122 from iced-rs/update-wgpu
Update `wgpu` to `0.18` and `cosmic-text` to `0.10`
Diffstat (limited to 'wgpu/src/backend.rs')
-rw-r--r-- | wgpu/src/backend.rs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/wgpu/src/backend.rs b/wgpu/src/backend.rs index 65c63f19..32b8a189 100644 --- a/wgpu/src/backend.rs +++ b/wgpu/src/backend.rs @@ -222,10 +222,12 @@ impl Backend { }), None => wgpu::LoadOp::Load, }, - store: true, + store: wgpu::StoreOp::Store, }, })], depth_stencil_attachment: None, + timestamp_writes: None, + occlusion_query_set: None, }, )); @@ -271,11 +273,13 @@ impl Backend { resolve_target: None, ops: wgpu::Operations { load: wgpu::LoadOp::Load, - store: true, + store: wgpu::StoreOp::Store, }, }, )], depth_stencil_attachment: None, + timestamp_writes: None, + occlusion_query_set: None, }, )); } |