diff options
| author | Dave Parks <davep@lindenlab.com> | 2011-05-02 14:52:12 -0500 |
|---|---|---|
| committer | Dave Parks <davep@lindenlab.com> | 2011-05-02 14:52:12 -0500 |
| commit | a25f8987032afede673b818fe7544975eba036b5 (patch) | |
| tree | cfa15a82661d407fd9f2031e7dfd6f7e0be48bb2 /indra/newview/llfeaturemanager.cpp | |
| parent | b9bb792c478d703c6442351ecb563c0a67f77111 (diff) | |
| parent | 43083743747bece13301e2789ab36ed7e4886aba (diff) | |
merge
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 4e16cc4217..9f0b34becc 100644 --- a/indra/newview/llfeaturemanager.cpp +++ b/indra/newview/llfeaturemanager.cpp @@ -729,6 +729,10 @@ void LLFeatureManager::applyBaseMasks() { maskFeatures("ATI"); } + if (gGLManager.mHasATIMemInfo && gGLManager.mVRAM < 256) + { + maskFeatures("ATIVramLT256"); + } if (gGLManager.mATIOldDriver) { maskFeatures("ATIOldDriver"); @@ -745,6 +749,10 @@ void LLFeatureManager::applyBaseMasks() { maskFeatures("OpenGLPre15"); } + if (gGLManager.mGLVersion < 3.f) + { + maskFeatures("OpenGLPre30"); + } // now mask by gpu string // Replaces ' ' with '_' in mGPUString to deal with inability for parser to handle spaces |
