Skip to content

Commit

Permalink
Merge pull request bevyengine#106 from Dispersia/master
Browse files Browse the repository at this point in the history
Change Power Preference to High Performance
  • Loading branch information
cart authored Aug 11, 2020
2 parents 2d6b0cc + c42dad5 commit 81879b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_wgpu/src/wgpu_renderer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ impl WgpuRenderer {
let instance = wgpu::Instance::new(wgpu::BackendBit::PRIMARY);
let adapter = instance
.request_adapter(&wgpu::RequestAdapterOptions {
power_preference: wgpu::PowerPreference::Default,
power_preference: wgpu::PowerPreference::HighPerformance,
compatible_surface: None,
})
.await
Expand Down

0 comments on commit 81879b7

Please sign in to comment.