Skip to content

Commit

Permalink
wgpu/examples/shadow: Don't run on llvmpipe. (#2595)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimblandy authored Apr 13, 2022
1 parent 988990c commit 4cba5ff
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion wgpu/examples/shadow/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -855,7 +855,10 @@ fn shadow() {
optional_features: wgpu::Features::default(),
base_test_parameters: framework::test_common::TestParameters::default()
.downlevel_flags(wgpu::DownlevelFlags::COMPARISON_SAMPLERS)
.specific_failure(Some(wgpu::Backends::VULKAN), None, Some("V3D"), false), // rpi4 on VK doesn't work: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3916
// rpi4 on VK doesn't work: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3916
.specific_failure(Some(wgpu::Backends::VULKAN), None, Some("V3D"), false)
// llvmpipe versions in CI are flaky: https://github.com/gfx-rs/wgpu/issues/2594
.specific_failure(Some(wgpu::Backends::VULKAN), None, Some("llvmpipe"), true),
tolerance: 2,
max_outliers: 500, // bounded by rpi4
});
Expand Down

0 comments on commit 4cba5ff

Please sign in to comment.