summaryrefslogtreecommitdiff
path: root/indra/newview/llfeaturemanager.cpp
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2026-03-12 19:09:06 +0200
committerAndrey Lihatskiy <alihatskiy@productengine.com>2026-03-12 19:09:06 +0200
commit82d018806a79553cc53a91027760eed5282f2d6b (patch)
tree06ccac7daa2abbb3ec39ff34c1ce161dfc4e823f /indra/newview/llfeaturemanager.cpp
parent28958ab7ae368d53b21888d178a9eb04ac6d82d2 (diff)
parent18db816ef7552785ffa26d6d0397efbb341a999f (diff)
Merge branch 'main' into marchcat/slua-26.1
# Conflicts: # autobuild.xml # indra/llwindow/llwindowwin32.cpp # indra/newview/llappviewer.cpp # indra/newview/llinventorygallerymenu.cpp
Diffstat (limited to 'indra/newview/llfeaturemanager.cpp')
-rw-r--r--indra/newview/llfeaturemanager.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llfeaturemanager.cpp b/indra/newview/llfeaturemanager.cpp
index 6d6dc675de..5a2b1c719c 100644
--- a/indra/newview/llfeaturemanager.cpp
+++ b/indra/newview/llfeaturemanager.cpp
@@ -494,7 +494,9 @@ bool LLFeatureManager::loadGPUClass()
{
mGPUClass = GPU_CLASS_2;
}
- else if (gbps <= class1_gbps*4.f)
+ else if ((gbps <= class1_gbps*4.f)
+ // Cap silicon's GPUs at med+ as they have high throughput, low capability
+ || gGLManager.mIsApple)
{
mGPUClass = GPU_CLASS_3;
}