diff options
author | 2023-04-13 06:15:03 +0200 | |
---|---|---|
committer | 2023-04-13 06:15:03 +0200 | |
commit | cf35c85f8cb16fb3c02f1eeb27b9a7736d35ef59 (patch) | |
tree | 8113e7980fa54e76d6cb3f7ce8d341b4c619b395 /wgpu/src/image | |
parent | 2be79d7b6be377c26f2d328058177179377fba46 (diff) | |
parent | db4b899fd215f0607474006a9aef0361e74d481f (diff) | |
download | iced-cf35c85f8cb16fb3c02f1eeb27b9a7736d35ef59.tar.gz iced-cf35c85f8cb16fb3c02f1eeb27b9a7736d35ef59.tar.bz2 iced-cf35c85f8cb16fb3c02f1eeb27b9a7736d35ef59.zip |
Merge pull request #1789 from ElhamAryanpur/master
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, |