Fix limits for llvmpipe

This commit is contained in:
Connor Fitzgerald 2021-07-02 17:28:01 -04:00
parent 762cdb3953
commit a13b54ced8
3 changed files with 4 additions and 4 deletions

View File

@ -328,6 +328,6 @@ fn boids() {
base_test_parameters: framework::test_common::TestParameters::default()
.downlevel_flags(wgpu::DownlevelFlags::COMPUTE_SHADERS),
tolerance: 0,
max_outliers: 600, // Currently bounded by rpi4
max_outliers: 700, // Currently bounded by rpi4
});
}

View File

@ -484,7 +484,7 @@ fn mipmap() {
optional_features: wgpu::Features::default(),
base_test_parameters: framework::test_common::TestParameters::default()
.backend_failure(wgpu::Backends::GL),
tolerance: 25,
max_outliers: 3000, // Mipmap sampling is highly variant between impls. This is currently bounded by AMD on mac
tolerance: 50,
max_outliers: 5000, // Mipmap sampling is highly variant between impls. This is currently bounded by lavapipe
});
}

View File

@ -500,7 +500,7 @@ fn skybox_etc2() {
optional_features: wgpu::Features::TEXTURE_COMPRESSION_ETC2,
base_test_parameters: framework::test_common::TestParameters::default(),
tolerance: 5,
max_outliers: 50, // Bounded by rpi4
max_outliers: 100, // Bounded by llvmpipe
});
}