diff options
| author | Dave Parks <davep@lindenlab.com> | 2023-03-27 18:30:05 -0500 |
|---|---|---|
| committer | Dave Parks <davep@lindenlab.com> | 2023-03-27 18:30:05 -0500 |
| commit | 9bf08f553aa59122a606487f1b28bd6083d9f966 (patch) | |
| tree | 0e650ce4c61b743e639e16d8b01d8d51b281d988 /indra/newview/llfeaturemanager.cpp | |
| parent | b81761c1d0c6f29e618b11d71ba9abb314214451 (diff) | |
| parent | 91a9a94df115fa2a69abb6cb1a6eacb569f08eef (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.cpp | 8 |
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; } |
