diff options
author | Dave Parks <davep@lindenlab.com> | 2011-07-09 02:28:34 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2011-07-09 02:28:34 -0500 |
commit | f1443579b32cf260e7ad35f35de3930f0f801bd2 (patch) | |
tree | eba8949b8dd71832297a0836be58cf2d4c71d830 /indra/newview/llfeaturemanager.cpp | |
parent | 36a05ebd9a2a969bab4621f522a9a82f69e523d7 (diff) |
SH-2038 Potential fix for a myriad of performance problems concering VBO usage.
Diffstat (limited to 'indra/newview/llfeaturemanager.cpp')
-rw-r--r-- | indra/newview/llfeaturemanager.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llfeaturemanager.cpp b/indra/newview/llfeaturemanager.cpp index 83844048d1..0ea0e41dfa 100644 --- a/indra/newview/llfeaturemanager.cpp +++ b/indra/newview/llfeaturemanager.cpp @@ -769,6 +769,10 @@ void LLFeatureManager::applyBaseMasks() { maskFeatures("TexUnit8orLess"); } + if (gGLManager.mHasMapBufferRange) + { + maskFeatures("MapBufferRange"); + } // now mask by gpu string // Replaces ' ' with '_' in mGPUString to deal with inability for parser to handle spaces |