From fd22c7f269878d460f5261a6ae5fd67df2d9d0ef Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Mon, 13 Jun 2022 21:45:23 -0700 Subject: [PATCH] Increase max_outliers on wgpu water example reftest. (#2767) The example says: Using AMD RADV POLARIS12 (Vulkan) The test says: thread 'water' panicked at 'Image data mismatch! Outlier count 464 over limit 460. Max difference 213', wgpu/examples/water/../../tests/common/image.rs:134:13 I checked the `water-difference.png` file, and it's just a few dots here and there. The example seems to run fine. --- wgpu/examples/water/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wgpu/examples/water/main.rs b/wgpu/examples/water/main.rs index f4e8efea1..5667d0567 100644 --- a/wgpu/examples/water/main.rs +++ b/wgpu/examples/water/main.rs @@ -829,6 +829,6 @@ fn water() { .downlevel_flags(wgpu::DownlevelFlags::READ_ONLY_DEPTH_STENCIL) .specific_failure(Some(wgpu::Backends::DX12), None, Some("Basic"), false), // WARP has a bug https://github.com/gfx-rs/wgpu/issues/1730 tolerance: 5, - max_outliers: 460, // bounded by DX12, then rpi4 on vk + max_outliers: 470, // bounded by DX12, then AMD Radeon Polaris12 on vk linux }); }