summaryrefslogtreecommitdiff
path: root/indra/newview/llfeaturemanager.cpp
diff options
context:
space:
mode:
authorDave Parks <davep@lindenlab.com>2011-10-24 13:10:26 -0500
committerDave Parks <davep@lindenlab.com>2011-10-24 13:10:26 -0500
commitf5b10238aff1fe0332ed0253d2fbb07be54acd14 (patch)
treeb175ce5d793a4f937e04c42949a99045bee58301 /indra/newview/llfeaturemanager.cpp
parent51ba2f5fbc379f58d64f8850cd438cc95d7b89f7 (diff)
SH-2240 Forcibly disable shaders on hardware that's specifically flagged as unsupported.
Diffstat (limited to 'indra/newview/llfeaturemanager.cpp')
-rw-r--r--indra/newview/llfeaturemanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfeaturemanager.cpp b/indra/newview/llfeaturemanager.cpp
index eb0cdf28c0..08f9d26705 100644
--- a/indra/newview/llfeaturemanager.cpp
+++ b/indra/newview/llfeaturemanager.cpp
@@ -731,7 +731,7 @@ void LLFeatureManager::applyBaseMasks()
{
maskFeatures("NoPixelShaders");
}
- if (!gGLManager.mHasVertexShader)
+ if (!gGLManager.mHasVertexShader || !mGPUSupported)
{
maskFeatures("NoVertexShaders");
}