diff options
| -rw-r--r-- | indra/llrender/llgl.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llrender/llgl.cpp b/indra/llrender/llgl.cpp index 8431744892..088ba95b75 100644 --- 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)  	{  | 
