diff options
| author | Dave Parks <davep@lindenlab.com> | 2023-02-28 08:49:15 -0600 |
|---|---|---|
| committer | Dave Parks <davep@lindenlab.com> | 2023-02-28 08:49:15 -0600 |
| commit | d5e558fffc0722398a9b4c2df681f2a6ce247b7f (patch) | |
| tree | 2475eeff4654e20c2a717bb217bdaa04503879d9 /indra/newview/llfeaturemanager.cpp | |
| parent | e5a2f85005bbf94f39ef048dbfe43276990f1154 (diff) | |
SL-19277 Fix for fallback probe sometimes getting occluded and making void water dark after teleport. Never default to having reflections off.
Diffstat (limited to 'indra/newview/llfeaturemanager.cpp')
| -rw-r--r-- | indra/newview/llfeaturemanager.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/indra/newview/llfeaturemanager.cpp b/indra/newview/llfeaturemanager.cpp index 3b1bee05af..81a7aa47c8 100644 --- a/indra/newview/llfeaturemanager.cpp +++ b/indra/newview/llfeaturemanager.cpp @@ -425,18 +425,14 @@ bool LLFeatureManager::loadGPUClass() } if (gbps < 0.f) - { //couldn't bench, use GLVersion + { //couldn't bench, default to Low #if LL_DARWIN //GLVersion is misleading on OSX, just default to class 3 if we can't bench LL_WARNS("RenderInit") << "Unable to get an accurate benchmark; defaulting to class 3" << LL_ENDL; mGPUClass = GPU_CLASS_3; #else - mGPUClass = GPU_CLASS_2; - #endif - } - else if (gbps <= 5.f) - { mGPUClass = GPU_CLASS_0; + #endif } else if (gbps <= 8.f) { |
