Skip to content

Commit

Permalink
Only require something GLES 3 compatible from wgpu (#1956)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoxc authored Aug 23, 2022
1 parent 4629f2c commit b9bb7ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/eframe/src/native/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 _,
Expand Down

0 comments on commit b9bb7ba

Please sign in to comment.