summaryrefslogtreecommitdiff
path: root/indra/newview/llfeaturemanager.cpp
diff options
context:
space:
mode:
authorDave Parks <davep@lindenlab.com>2023-03-27 18:30:05 -0500
committerDave Parks <davep@lindenlab.com>2023-03-27 18:30:05 -0500
commit9bf08f553aa59122a606487f1b28bd6083d9f966 (patch)
tree0e650ce4c61b743e639e16d8b01d8d51b281d988 /indra/newview/llfeaturemanager.cpp
parentb81761c1d0c6f29e618b11d71ba9abb314214451 (diff)
parent91a9a94df115fa2a69abb6cb1a6eacb569f08eef (diff)
Merge branch 'DRTVWR-559' of github.com:secondlife/viewer into DRTVWR-559
Diffstat (limited to 'indra/newview/llfeaturemanager.cpp')
-rw-r--r--indra/newview/llfeaturemanager.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/newview/llfeaturemanager.cpp b/indra/newview/llfeaturemanager.cpp
index 81a7aa47c8..0974ae0742 100644
--- a/indra/newview/llfeaturemanager.cpp
+++ b/indra/newview/llfeaturemanager.cpp
@@ -434,19 +434,19 @@ bool LLFeatureManager::loadGPUClass()
mGPUClass = GPU_CLASS_0;
#endif
}
- else if (gbps <= 8.f)
+ else if (gbps <= 32.0f)
{
mGPUClass = GPU_CLASS_1;
}
- else if (gbps <= 16.f)
+ else if (gbps <= 64.0f)
{
mGPUClass = GPU_CLASS_2;
}
- else if (gbps <= 40.f)
+ else if (gbps <= 128.0f)
{
mGPUClass = GPU_CLASS_3;
}
- else if (gbps <= 80.f)
+ else if (gbps <= 256.0f)
{
mGPUClass = GPU_CLASS_4;
}