diff options
-rwxr-xr-x | indra/newview/llfeaturemanager.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/newview/llfeaturemanager.cpp b/indra/newview/llfeaturemanager.cpp index f081d5c36c..bc8fcb54bb 100755 --- a/indra/newview/llfeaturemanager.cpp +++ b/indra/newview/llfeaturemanager.cpp @@ -452,23 +452,23 @@ bool LLFeatureManager::loadGPUClass() } #endif } - else if (gbps < 4.f) + else if (gbps < 5.f) { mGPUClass = GPU_CLASS_0; } - else if (gbps < 8.f) + else if (gbps < 10.f) { mGPUClass = GPU_CLASS_1; } - else if (gbps < 16.f) + else if (gbps < 20.f) { mGPUClass = GPU_CLASS_2; } - else if (gbps < 24.f) + else if (gbps < 40.f) { mGPUClass = GPU_CLASS_3; } - else if (gbps < 30.f) + else if (gbps < 80.f) { mGPUClass = GPU_CLASS_4; } |