diff options
author | Dave Parks <davep@lindenlab.com> | 2012-03-28 00:49:42 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2012-03-28 00:49:42 -0500 |
commit | 76634dc7afd768c2c33b7aac16f248a82513459c (patch) | |
tree | df05a31c73ae3e214bdd3439b57e8537e0540802 /indra/llrender/llgl.cpp | |
parent | 4e1c599550a0132265758275fe31af4cb5fbe589 (diff) |
MAINT-793 Pop up notification when drivers are likely out of date. Allow Lighting and Shadows on Intel when drivers are up to date.
Diffstat (limited to 'indra/llrender/llgl.cpp')
-rw-r--r-- | indra/llrender/llgl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llrender/llgl.cpp b/indra/llrender/llgl.cpp index a819ab0b79..f2105f79d0 100644 --- a/indra/llrender/llgl.cpp +++ b/indra/llrender/llgl.cpp @@ -745,8 +745,8 @@ bool LLGLManager::initGL() } #endif - if (mIsIntel) - { //never try to use framebuffer objects on intel (crashy) + if (mIsIntel && mGLVersion <= 3.f) + { //never try to use framebuffer objects on older intel drivers (crashy) mHasFramebufferObject = FALSE; } |