Only require something GLES 3 compatible from wgpu (#1956)

This commit is contained in:
Zoxc 2022-08-23 14:39:01 +02:00 committed by GitHub
parent 4629f2cd12
commit b9bb7baaa7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -507,7 +507,7 @@ mod wgpu_integration {
wgpu::DeviceDescriptor {
label: None,
features: wgpu::Features::default(),
limits: wgpu::Limits::default(),
limits: wgpu::Limits::downlevel_webgl2_defaults(),
},
wgpu::PresentMode::Fifo,
native_options.multisampling.max(1) as _,