Fix load operation for msaa render pass in iced_wgpu

This commit is contained in:
Héctor Ramón Jiménez 2025-03-27 17:01:41 +01:00
parent 5c196889f2
commit 788d9989ba
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -169,7 +169,7 @@ impl Pipeline {
view: &targets.attachment,
resolve_target: Some(&targets.resolve),
ops: wgpu::Operations {
load: wgpu::LoadOp::Load,
load: wgpu::LoadOp::Clear(wgpu::Color::TRANSPARENT),
store: wgpu::StoreOp::Store,
},
})],