diff options
| author | Erik Kundiman <erik@megapahit.org> | 2026-01-30 13:48:37 +0800 |
|---|---|---|
| committer | Erik Kundiman <erik@megapahit.org> | 2026-01-30 13:48:37 +0800 |
| commit | 45eeed33872a9ff367bc6f2997c2fdedb65171ac (patch) | |
| tree | ba58689aeea923bdb674b2183b0f9f1b328dcc9a /indra/newview/llfeaturemanager.cpp | |
| parent | dbe9c9c1929cfb345f9363e4ba1cb4128188d2f3 (diff) | |
| parent | 3caf20f4c43173393c10b9cecbb266a4f7ff3702 (diff) | |
Merge tag 'Second_Life_Release#3caf20f4-2026.01' into 2026.01
Diffstat (limited to 'indra/newview/llfeaturemanager.cpp')
| -rw-r--r-- | indra/newview/llfeaturemanager.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llfeaturemanager.cpp b/indra/newview/llfeaturemanager.cpp index 870d56a51e..68443dfc5b 100644 --- a/indra/newview/llfeaturemanager.cpp +++ b/indra/newview/llfeaturemanager.cpp @@ -495,7 +495,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; } |
