diff options
author | Loren Shih <seraph@lindenlab.com> | 2010-11-04 14:44:00 -0400 |
---|---|---|
committer | Loren Shih <seraph@lindenlab.com> | 2010-11-04 14:44:00 -0400 |
commit | 889aff8d87a4dbf3ca43c43bdeed825f67fd5e60 (patch) | |
tree | 0132d441993d7b26fb67e061f0c2ad50033fde8b /indra/llrender/llrender.cpp | |
parent | e2714252f34b02ee628fb1665dfa90b932fab2f7 (diff) | |
parent | 3bbaac0b9d246939a2255ca8b06abf9568694370 (diff) |
automated merge from http://hg.secondlife.com/viewer-beta
Diffstat (limited to 'indra/llrender/llrender.cpp')
-rw-r--r-- | indra/llrender/llrender.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/llrender/llrender.cpp b/indra/llrender/llrender.cpp index e26acd53a3..8eb160f4e7 100644 --- a/indra/llrender/llrender.cpp +++ b/indra/llrender/llrender.cpp @@ -431,6 +431,9 @@ void LLTexUnit::setTextureFilteringOption(LLTexUnit::eTextureFilterOptions optio if (gGL.mMaxAnisotropy < 1.f) { glGetFloatv(GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT, &gGL.mMaxAnisotropy); + + llinfos << "gGL.mMaxAnisotropy: " << gGL.mMaxAnisotropy << llendl ; + gGL.mMaxAnisotropy = llmax(1.f, gGL.mMaxAnisotropy) ; } glTexParameterf(sGLTextureType[mCurrTexType], GL_TEXTURE_MAX_ANISOTROPY_EXT, gGL.mMaxAnisotropy); } |