mirror of
https://github.com/gfx-rs/wgpu.git
synced 2026-04-22 03:02:01 -04:00
Mark vk mipmap example as passing
This commit is contained in:
@@ -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};
|
||||
|
||||
|
||||
@@ -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
|
||||
});
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user