diff options
Diffstat (limited to 'indra/llrender/llgl.cpp')
| -rw-r--r-- | indra/llrender/llgl.cpp | 7 | 
1 files changed, 6 insertions, 1 deletions
diff --git a/indra/llrender/llgl.cpp b/indra/llrender/llgl.cpp index 3cdbb139be..3b506d6965 100644 --- a/indra/llrender/llgl.cpp +++ b/indra/llrender/llgl.cpp @@ -1273,7 +1273,7 @@ bool LLGLManager::initGL()      // there's some implementation that reports a crazy value      mMaxUniformBlockSize = llmin(mMaxUniformBlockSize, 65536); -    if (mGLVersion >= 4.59f) +    if (mHasAnisotropic)      {          glGetFloatv(GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT, &mMaxAnisotropy);      } @@ -1440,6 +1440,11 @@ void LLGLManager::initExtensions()      mHasCubeMapArray = mGLVersion >= 3.99f;      mHasTransformFeedback = mGLVersion >= 3.99f;      mHasDebugOutput = mGLVersion >= 4.29f; +    mHasAnisotropic = mGLVersion >= 4.59f; +    if(!mHasAnisotropic && gGLHExts.mSysExts) +    { +        mHasAnisotropic = ExtensionExists("GL_EXT_texture_filter_anisotropic", gGLHExts.mSysExts); +    }      // Misc      glGetIntegerv(GL_MAX_ELEMENTS_VERTICES, (GLint*) &mGLMaxVertexRange);  | 
