From f08b66d4e9fa698458ccb8f6af584d9dc19ad3a5 Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Fri, 27 Feb 2026 13:53:22 -0700 Subject: [PATCH] Improve GPU selection on Linux (#50316) Follow-up to https://github.com/zed-industries/zed/pull/50270 Cherry Pick of #50274 Release Notes: - N/A Co-authored-by: John Tur --- crates/gpui_wgpu/src/wgpu_context.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/gpui_wgpu/src/wgpu_context.rs b/crates/gpui_wgpu/src/wgpu_context.rs index 270201183c8afd33534c184b7dc597ed6ab7d9d5..96fbdddaaaf0aa5da2f77030ab30ddbd8d7197d5 100644 --- a/crates/gpui_wgpu/src/wgpu_context.rs +++ b/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, })