diff options
author | 2023-04-08 04:47:05 +0200 | |
---|---|---|
committer | 2023-04-08 04:47:05 +0200 | |
commit | c0431aedd3bbef4161456f2fa5f29866e8f17fc5 (patch) | |
tree | 37f5af689b91818e04f3bc58e523aa24858f056a /wgpu/src/triangle | |
parent | 6fae8bf6cbe7155bcee42eaeba68e31564df057c (diff) | |
download | iced-c0431aedd3bbef4161456f2fa5f29866e8f17fc5.tar.gz iced-c0431aedd3bbef4161456f2fa5f29866e8f17fc5.tar.bz2 iced-c0431aedd3bbef4161456f2fa5f29866e8f17fc5.zip |
Update `wgpu` and `cosmic-text`
Diffstat (limited to 'wgpu/src/triangle')
-rw-r--r-- | wgpu/src/triangle/msaa.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/wgpu/src/triangle/msaa.rs b/wgpu/src/triangle/msaa.rs index 7144125c..14522c89 100644 --- a/wgpu/src/triangle/msaa.rs +++ b/wgpu/src/triangle/msaa.rs @@ -223,6 +223,7 @@ impl Targets { dimension: wgpu::TextureDimension::D2, format, usage: wgpu::TextureUsages::RENDER_ATTACHMENT, + view_formats: &[], }); let resolve = device.create_texture(&wgpu::TextureDescriptor { @@ -234,6 +235,7 @@ impl Targets { format, usage: wgpu::TextureUsages::RENDER_ATTACHMENT | wgpu::TextureUsages::TEXTURE_BINDING, + view_formats: &[], }); let attachment = |