Mark vk mipmap example as passing

This commit is contained in:
Connor Fitzgerald
2021-07-02 00:57:55 -04:00
parent 53e2c95dc8
commit 1fb77c68da
3 changed files with 4 additions and 4 deletions

View File

@@ -74,7 +74,7 @@ fn test_compute_overflow() {
#[test]
fn test_multithreaded_compute() {
initialize_test(
TestParameters::default().backend_failures(wgpu::Backends::GL),
TestParameters::default().backend_failure(wgpu::Backends::GL),
|ctx| {
use std::{sync::mpsc, thread, time::Duration};

View File

@@ -483,7 +483,7 @@ fn mipmap() {
height: 768,
optional_features: wgpu::Features::default(),
base_test_parameters: framework::test_common::TestParameters::default()
.backend_failures(wgpu::Backends::VULKAN | wgpu::Backends::GL),
.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
});

View File

@@ -143,7 +143,7 @@ fn draw_vertex_offset() {
initialize_test(
TestParameters::default()
.test_features()
.backend_failures(wgpu::Backends::DX12 | wgpu::Backends::DX11),
.backend_failure(wgpu::Backends::DX12 | wgpu::Backends::DX11),
|ctx| {
pulling_common(ctx, &[0, 1, 2, 3, 4, 5], |cmb| {
cmb.draw(0..3, 0..1);
@@ -167,7 +167,7 @@ fn draw_instanced_offset() {
initialize_test(
TestParameters::default()
.test_features()
.backend_failures(wgpu::Backends::DX12 | wgpu::Backends::DX11),
.backend_failure(wgpu::Backends::DX12 | wgpu::Backends::DX11),
|ctx| {
pulling_common(ctx, &[0, 1, 2, 3, 4, 5], |cmb| {
cmb.draw(0..3, 0..1);