Only require something GLES 3 compatible from wgpu (#1956)
This commit is contained in:
parent
4629f2cd12
commit
b9bb7baaa7
1 changed files with 1 additions and 1 deletions
|
@ -507,7 +507,7 @@ mod wgpu_integration {
|
||||||
wgpu::DeviceDescriptor {
|
wgpu::DeviceDescriptor {
|
||||||
label: None,
|
label: None,
|
||||||
features: wgpu::Features::default(),
|
features: wgpu::Features::default(),
|
||||||
limits: wgpu::Limits::default(),
|
limits: wgpu::Limits::downlevel_webgl2_defaults(),
|
||||||
},
|
},
|
||||||
wgpu::PresentMode::Fifo,
|
wgpu::PresentMode::Fifo,
|
||||||
native_options.multisampling.max(1) as _,
|
native_options.multisampling.max(1) as _,
|
||||||
|
|
Loading…
Reference in a new issue