File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -88,11 +88,19 @@ static MULTIPLE_DEVICES: GpuTestConfiguration = GpuTestConfiguration::new()
8888 . run_sync ( |ctx| {
8989 use pollster:: FutureExt as _;
9090 ctx. adapter
91- . request_device ( & wgpu:: DeviceDescriptor :: default ( ) )
91+ . request_device ( & wgpu:: DeviceDescriptor {
92+ required_features : wgpu:: Features :: empty ( ) ,
93+ required_limits : wgpu:: Limits :: downlevel_webgl2_defaults ( ) ,
94+ ..Default :: default ( )
95+ } )
9296 . block_on ( )
9397 . expect ( "failed to create device" ) ;
9498 ctx. adapter
95- . request_device ( & wgpu:: DeviceDescriptor :: default ( ) )
99+ . request_device ( & wgpu:: DeviceDescriptor {
100+ required_features : wgpu:: Features :: empty ( ) ,
101+ required_limits : wgpu:: Limits :: downlevel_webgl2_defaults ( ) ,
102+ ..Default :: default ( )
103+ } )
96104 . block_on ( )
97105 . expect ( "failed to create device" ) ;
98106 } ) ;
You can’t perform that action at this time.
0 commit comments