Skip to content

Commit 16ec5b0

Browse files
authored
Remove expected failure on AMD/DX12 from msaa example (#4729)
* Remove expected failure on AMD/DX12 from msaa example * rem import
1 parent 6786548 commit 16ec5b0

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

examples/msaa-line/src/main.rs

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ use std::{borrow::Cow, iter};
1212
use bytemuck::{Pod, Zeroable};
1313
use wgpu::util::DeviceExt;
1414

15-
#[cfg(test)]
16-
use wgpu_test::FailureCase;
1715
use winit::{
1816
event::{ElementState, KeyEvent, WindowEvent},
1917
keyboard::{Key, NamedKey},
@@ -329,13 +327,7 @@ static TEST: wgpu_example::framework::ExampleTestParams =
329327
width: 1024,
330328
height: 768,
331329
optional_features: wgpu::Features::TEXTURE_ADAPTER_SPECIFIC_FORMAT_FEATURES,
332-
base_test_parameters: wgpu_test::TestParameters::default()
333-
// AMD seems to render nothing on DX12 https://github.com/gfx-rs/wgpu/issues/3838
334-
.expect_fail(FailureCase {
335-
backends: Some(wgpu::Backends::DX12),
336-
vendor: Some(0x1002),
337-
..FailureCase::default()
338-
}),
330+
base_test_parameters: wgpu_test::TestParameters::default(),
339331
// There's a lot of natural variance so we check the weighted median too to differentiate
340332
// real failures from variance.
341333
comparisons: &[

0 commit comments

Comments
 (0)