@@ -438,7 +438,8 @@ pub static TEST: crate::framework::ExampleTestParams = crate::framework::Example
438438 width : 1024 ,
439439 height : 768 ,
440440 optional_features : wgpu:: Features :: empty ( ) ,
441- base_test_parameters : wgpu_test:: TestParameters :: default ( ) ,
441+ base_test_parameters : wgpu_test:: TestParameters :: default ( )
442+ . instance_flags ( wgpu:: InstanceFlags :: GPU_BASED_VALIDATION ) ,
442443 comparisons : & [ wgpu_test:: ComparisonType :: Mean ( 0.0 ) ] ,
443444 _phantom : std:: marker:: PhantomData :: < Example > ,
444445} ;
@@ -452,7 +453,8 @@ pub static TEST_UNIFORM: crate::framework::ExampleTestParams =
452453 width : 1024 ,
453454 height : 768 ,
454455 optional_features : wgpu:: Features :: empty ( ) ,
455- base_test_parameters : wgpu_test:: TestParameters :: default ( ) ,
456+ base_test_parameters : wgpu_test:: TestParameters :: default ( )
457+ . instance_flags ( wgpu:: InstanceFlags :: GPU_BASED_VALIDATION ) ,
456458 comparisons : & [ wgpu_test:: ComparisonType :: Mean ( 0.0 ) ] ,
457459 _phantom : std:: marker:: PhantomData :: < Example > ,
458460 } ;
@@ -467,7 +469,8 @@ pub static TEST_NON_UNIFORM: crate::framework::ExampleTestParams =
467469 height : 768 ,
468470 optional_features :
469471 wgpu:: Features :: SAMPLED_TEXTURE_AND_STORAGE_BUFFER_ARRAY_NON_UNIFORM_INDEXING ,
470- base_test_parameters : wgpu_test:: TestParameters :: default ( ) ,
472+ base_test_parameters : wgpu_test:: TestParameters :: default ( )
473+ . instance_flags ( wgpu:: InstanceFlags :: GPU_BASED_VALIDATION ) ,
471474 comparisons : & [ wgpu_test:: ComparisonType :: Mean ( 0.0 ) ] ,
472475 _phantom : std:: marker:: PhantomData :: < Example > ,
473476 } ;
0 commit comments