diff options
author | 2023-04-12 23:38:21 +0300 | |
---|---|---|
committer | 2023-04-13 05:40:23 +0200 | |
commit | d5453c62e9bdbf0cea030b009c41b892b700496d (patch) | |
tree | 2a093144f1e4bad10550e3f0c081f6f990a23493 /wgpu/src/image | |
parent | adb70d232ac00b3cba459374b3b1c5359970030f (diff) | |
download | iced-d5453c62e9bdbf0cea030b009c41b892b700496d.tar.gz iced-d5453c62e9bdbf0cea030b009c41b892b700496d.tar.bz2 iced-d5453c62e9bdbf0cea030b009c41b892b700496d.zip |
Update `wgpu` to `0.15`
Diffstat (limited to 'wgpu/src/image')
-rw-r--r-- | wgpu/src/image/atlas.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/wgpu/src/image/atlas.rs b/wgpu/src/image/atlas.rs index eafe2f96..82504147 100644 --- a/wgpu/src/image/atlas.rs +++ b/wgpu/src/image/atlas.rs @@ -39,6 +39,7 @@ impl Atlas { sample_count: 1, dimension: wgpu::TextureDimension::D2, format: wgpu::TextureFormat::Rgba8UnormSrgb, + view_formats: &[], usage: wgpu::TextureUsages::COPY_DST | wgpu::TextureUsages::COPY_SRC | wgpu::TextureUsages::TEXTURE_BINDING, @@ -247,6 +248,7 @@ impl Atlas { sample_count: 1, dimension: wgpu::TextureDimension::D2, format: wgpu::TextureFormat::Rgba8UnormSrgb, + view_formats: &[], usage: wgpu::TextureUsages::COPY_DST | wgpu::TextureUsages::COPY_SRC | wgpu::TextureUsages::TEXTURE_BINDING, |