summaryrefslogtreecommitdiff
path: root/indra/newview/llfeaturemanager.cpp
diff options
context:
space:
mode:
authorGraham Linden <none@none>2014-11-20 12:13:36 -0800
committerGraham Linden <none@none>2014-11-20 12:13:36 -0800
commitd8040ad4340a1b76caa6b31f2d5c8a117d83b692 (patch)
tree6ef8607a59492f9eaf2e38dcb23a31771aa8500d /indra/newview/llfeaturemanager.cpp
parentaa49386c44b1379ee095a6e528b1a392a1c0e8da (diff)
Put back old thresholds to try to get better match on old/new identification per-card
Diffstat (limited to 'indra/newview/llfeaturemanager.cpp')
-rwxr-xr-xindra/newview/llfeaturemanager.cpp10
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;
}