summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Parks <davep@lindenlab.com>2012-03-28 14:25:42 -0500
committerDave Parks <davep@lindenlab.com>2012-03-28 14:25:42 -0500
commit8fd20991f42ce632ec58459881a8c26b77ecaf0f (patch)
tree320b5bc6393df6bf75bea93c64af702c9e9227e4
parent98dd237438011a81690fd704c593a181a76f14d9 (diff)
MAINT-809 Disable FSAA above 4x if OpenGL version < 3.0
-rw-r--r--indra/newview/llfloaterhardwaresettings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloaterhardwaresettings.cpp b/indra/newview/llfloaterhardwaresettings.cpp
index adf41df5cb..116bd241c4 100644
--- a/indra/newview/llfloaterhardwaresettings.cpp
+++ b/indra/newview/llfloaterhardwaresettings.cpp
@@ -149,7 +149,7 @@ BOOL LLFloaterHardwareSettings::postBuild()
{
childSetAction("OK", onBtnOK, this);
- if (gGLManager.mIsIntel)
+ if (gGLManager.mIsIntel || gGLManager.mGLVersion < 3.f)
{ //remove FSAA settings above "4x"
LLComboBox* combo = getChild<LLComboBox>("fsaa");
combo->remove("8x");