mirror of
https://github.com/gfx-rs/wgpu.git
synced 2025-02-20 10:53:34 +00:00
Fix limits for llvmpipe
This commit is contained in:
parent
762cdb3953
commit
a13b54ced8
@ -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
|
||||
});
|
||||
}
|
||||
|
@ -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
|
||||
});
|
||||
}
|
||||
|
@ -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
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user