From 34c9e01a96d37446d4ea20df7a5be5f4a03fd323 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Fri, 6 Feb 2026 22:37:33 -0600 Subject: [PATCH] Exclude Windows and macOS systems from the slow GPU heuristic It's targeted at SBCs, which don't run Windows or macOS. --- app/wm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/wm.cpp b/app/wm.cpp index 09cf6df6..88bda333 100644 --- a/app/wm.cpp +++ b/app/wm.cpp @@ -210,7 +210,7 @@ bool WMUtils::isGpuSlow() bool ret; if (!Utils::getEnvironmentVariableOverride("GL_IS_SLOW", &ret)) { -#if defined(GL_IS_SLOW) || !defined(Q_PROCESSOR_X86) +#if defined(GL_IS_SLOW) || (!defined(Q_PROCESSOR_X86) && !defined(Q_OS_DARWIN) && !defined(Q_OS_WIN)) // We currently assume GPUs on non-x86 hardware are slow by default ret = true; #else