diff options
author | 2023-10-27 03:21:40 +0200 | |
---|---|---|
committer | 2023-10-27 03:24:06 +0200 | |
commit | 86b877517feb15b2155c6cfef29246a3f281c8ae (patch) | |
tree | 885dd563406f0e26b267536f08a5263a17a011be /wgpu/src/triangle.rs | |
parent | f1b1344d59fa7354615f560bd25ed01ad0c9f865 (diff) | |
download | iced-86b877517feb15b2155c6cfef29246a3f281c8ae.tar.gz iced-86b877517feb15b2155c6cfef29246a3f281c8ae.tar.bz2 iced-86b877517feb15b2155c6cfef29246a3f281c8ae.zip |
Update `wgpu` to `0.18` and `cosmic-text` to `0.10`
Diffstat (limited to 'wgpu/src/triangle.rs')
-rw-r--r-- | wgpu/src/triangle.rs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/wgpu/src/triangle.rs b/wgpu/src/triangle.rs index 644c9f84..69270a73 100644 --- a/wgpu/src/triangle.rs +++ b/wgpu/src/triangle.rs @@ -300,10 +300,15 @@ impl Pipeline { wgpu::RenderPassColorAttachment { view: attachment, resolve_target, - ops: wgpu::Operations { load, store: true }, + ops: wgpu::Operations { + load, + store: wgpu::StoreOp::Store, + }, }, )], depth_stencil_attachment: None, + timestamp_writes: None, + occlusion_query_set: None, }); let layer = &mut self.layers[layer]; |