mirror of
https://github.com/gfx-rs/wgpu.git
synced 2025-12-08 21:26:17 +00:00
* Try to fix Occasional CI failures on wgpu-examples [Executed] [Vulkan/llvmpipe (LLVM 18.1.3, 256 bits)/0] mipmap-query Fixes #8345
This commit is contained in:
parent
2a58599dc4
commit
80c4468492
@ -530,6 +530,14 @@ pub static TEST_QUERY: crate::framework::ExampleTestParams = crate::framework::E
|
|||||||
height: 768,
|
height: 768,
|
||||||
optional_features: QUERY_FEATURES,
|
optional_features: QUERY_FEATURES,
|
||||||
base_test_parameters: wgpu_test::TestParameters::default(),
|
base_test_parameters: wgpu_test::TestParameters::default(),
|
||||||
comparisons: &[wgpu_test::ComparisonType::Mean(0.025)],
|
// Somehow, this test on CI lavapipe reasonably often gets error of 0.025341, significantly higher
|
||||||
|
// than the comparison we usually do with mean 0.005. This only happens when the query is used.
|
||||||
|
comparisons: &[
|
||||||
|
wgpu_test::ComparisonType::Mean(0.03),
|
||||||
|
wgpu_test::ComparisonType::Percentile {
|
||||||
|
percentile: 0.99,
|
||||||
|
threshold: 0.1,
|
||||||
|
},
|
||||||
|
],
|
||||||
_phantom: std::marker::PhantomData::<Example>,
|
_phantom: std::marker::PhantomData::<Example>,
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user