diff options
author | 2024-05-01 16:19:08 +0200 | |
---|---|---|
committer | 2024-09-20 00:14:46 +0200 | |
commit | aed9a03e3cc30c68488f6e177e2ea0513e7ffc99 (patch) | |
tree | 1626b4d0e387ef26b0bc083e117acf3b809c0604 /examples/integration | |
parent | fed9c8d19bed572aec80376722fc5ef0d48ac417 (diff) | |
download | iced-aed9a03e3cc30c68488f6e177e2ea0513e7ffc99.tar.gz iced-aed9a03e3cc30c68488f6e177e2ea0513e7ffc99.tar.bz2 iced-aed9a03e3cc30c68488f6e177e2ea0513e7ffc99.zip |
Update `wgpu` to `0.20.1`
Diffstat (limited to 'examples/integration')
-rw-r--r-- | examples/integration/src/scene.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/integration/src/scene.rs b/examples/integration/src/scene.rs index e29558bf..f3a7a194 100644 --- a/examples/integration/src/scene.rs +++ b/examples/integration/src/scene.rs @@ -74,6 +74,7 @@ fn build_pipeline( module: &vs_module, entry_point: "main", buffers: &[], + compilation_options: wgpu::PipelineCompilationOptions::default(), }, fragment: Some(wgpu::FragmentState { module: &fs_module, @@ -86,6 +87,7 @@ fn build_pipeline( }), write_mask: wgpu::ColorWrites::ALL, })], + compilation_options: wgpu::PipelineCompilationOptions::default(), }), primitive: wgpu::PrimitiveState { topology: wgpu::PrimitiveTopology::TriangleList, |