diff options
| author | Dave Parks <davep@lindenlab.com> | 2024-09-17 18:14:22 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-17 18:14:22 -0500 |
| commit | 0a617904f98ab5960379099822e4891a08137e68 (patch) | |
| tree | 6b3737e63160e739d38674192f02767ed3d69490 /indra/newview/llfeaturemanager.cpp | |
| parent | fd843d514a4e28f8e4a5d5595bba21ccad195e72 (diff) | |
#2590 Fix for horrible FPS on Intel Mac (#2591)
* Work around for GHA mac runners not playing nice with Tracy
* Delay VBO deletion for a few frames
* Enable multithreaded GL driver and multithreaded media textures on Apple silicon
Diffstat (limited to 'indra/newview/llfeaturemanager.cpp')
| -rw-r--r-- | indra/newview/llfeaturemanager.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/newview/llfeaturemanager.cpp b/indra/newview/llfeaturemanager.cpp index aa04221f4b..3259ea249b 100644 --- a/indra/newview/llfeaturemanager.cpp +++ b/indra/newview/llfeaturemanager.cpp @@ -656,6 +656,14 @@ void LLFeatureManager::applyBaseMasks() { maskFeatures("Intel"); } + if (gGLManager.mIsApple) + { + maskFeatures("AppleGPU"); + } + else + { + maskFeatures("NonAppleGPU"); + } if (gGLManager.mGLVersion < 3.f) { maskFeatures("OpenGLPre30"); |
