Skip to content

Commit

Permalink
setup failures
Browse files Browse the repository at this point in the history
  • Loading branch information
teoxoy committed Feb 14, 2023
1 parent c140bb3 commit 00209f3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions wgpu/tests/clear_texture.rs
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,7 @@ fn clear_texture_uncompressed_gles_compat() {
fn clear_texture_uncompressed() {
initialize_test(
TestParameters::default()
.webgl2_failure()
.backend_failure(wgpu::Backends::GL)
.features(wgpu::Features::CLEAR_TEXTURE),
|ctx| {
Expand Down
8 changes: 7 additions & 1 deletion wgpu/tests/zero_init_texture_after_discard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,13 @@ fn discarding_depth_target_resets_texture_init_state_check_visible_on_copy_in_sa
.downlevel_flags(
DownlevelFlags::DEPTH_TEXTURE_AND_BUFFER_COPIES | DownlevelFlags::COMPUTE_SHADERS,
)
.limits(Limits::downlevel_defaults()),
.limits(Limits::downlevel_defaults())
.specific_failure(
Some(wgpu::Backends::DX12),
Some(5140),
Some("Microsoft Basic Render Driver"),
false,
),
|mut ctx| {
for format in [
TextureFormat::Stencil8,
Expand Down

0 comments on commit 00209f3

Please sign in to comment.