Improve GPU selection on Linux (#50316)

Conrad Irwin and John Tur created

Follow-up to https://github.com/zed-industries/zed/pull/50270

Cherry Pick of #50274

Release Notes:

- N/A

Co-authored-by: John Tur <john-tur@outlook.com>

Change summary

crates/gpui_wgpu/src/wgpu_context.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/gpui_wgpu/src/wgpu_context.rs 🔗

@@ -169,7 +169,7 @@ impl WgpuContext {
 
         instance
             .request_adapter(&wgpu::RequestAdapterOptions {
-                power_preference: wgpu::PowerPreference::None,
+                power_preference: wgpu::PowerPreference::HighPerformance,
                 compatible_surface,
                 force_fallback_adapter: false,
             })