summaryrefslogtreecommitdiff
path: root/indra/llrender
diff options
context:
space:
mode:
authorGraham Madarasz (Graham) <graham@lindenlab.com>2013-05-01 11:56:15 -0700
committerGraham Madarasz (Graham) <graham@lindenlab.com>2013-05-01 11:56:15 -0700
commitd328bfd96e1c148000456d2dab4d6c619ebabbee (patch)
tree3702de36e36c1a9cf6d814866b8130db6ec5fc27 /indra/llrender
parent42b42826970bcb03486ce2ad10816a67eed4e373 (diff)
NORSPEC-144 make code to nerf use of FBOs on old windows drivers not affect Mac too
Diffstat (limited to 'indra/llrender')
-rwxr-xr-xindra/llrender/llgl.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llrender/llgl.cpp b/indra/llrender/llgl.cpp
index 8431744892..088ba95b75 100755
--- a/indra/llrender/llgl.cpp
+++ b/indra/llrender/llgl.cpp
@@ -760,12 +760,13 @@ bool LLGLManager::initGL()
{ //using multisample textures on ATI results in black screen for some reason
mHasTextureMultisample = FALSE;
}
-#endif
+
if (mIsIntel && mGLVersion <= 3.f)
{ //never try to use framebuffer objects on older intel drivers (crashy)
mHasFramebufferObject = FALSE;
}
+#endif
if (mHasFramebufferObject)
{