summaryrefslogtreecommitdiffstats
path: root/wgpu/src/image
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-05-01 16:19:08 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-09-20 00:14:46 +0200
commitaed9a03e3cc30c68488f6e177e2ea0513e7ffc99 (patch)
tree1626b4d0e387ef26b0bc083e117acf3b809c0604 /wgpu/src/image
parentfed9c8d19bed572aec80376722fc5ef0d48ac417 (diff)
downloadiced-aed9a03e3cc30c68488f6e177e2ea0513e7ffc99.tar.gz
iced-aed9a03e3cc30c68488f6e177e2ea0513e7ffc99.tar.bz2
iced-aed9a03e3cc30c68488f6e177e2ea0513e7ffc99.zip
Update `wgpu` to `0.20.1`
Diffstat (limited to 'wgpu/src/image')
-rw-r--r--wgpu/src/image/mod.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/wgpu/src/image/mod.rs b/wgpu/src/image/mod.rs
index 1b16022a..d72303ea 100644
--- a/wgpu/src/image/mod.rs
+++ b/wgpu/src/image/mod.rs
@@ -153,6 +153,8 @@ impl Pipeline {
8 => Uint32,
),
}],
+ compilation_options:
+ wgpu::PipelineCompilationOptions::default(),
},
fragment: Some(wgpu::FragmentState {
module: &shader,
@@ -173,6 +175,8 @@ impl Pipeline {
}),
write_mask: wgpu::ColorWrites::ALL,
})],
+ compilation_options:
+ wgpu::PipelineCompilationOptions::default(),
}),
primitive: wgpu::PrimitiveState {
topology: wgpu::PrimitiveTopology::TriangleList,