diff options
author | Dave Parks <davep@lindenlab.com> | 2012-03-08 15:22:56 -0600 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2012-03-08 15:22:56 -0600 |
commit | 83e69659e2c950bec02df8c8e1b15fbc34ca1dc6 (patch) | |
tree | 891fb4fef477a50b330cf71ef5dfd6e418304409 /indra/llrender | |
parent | cd468364a77ca184133f8c49c9042cefae5c6ce1 (diff) |
MAINT-708 Add checkbox to hardware settings for controlling texture compression. Default texture compression to on for cards with 512MB of VRAM or less, off otherwise.
Diffstat (limited to 'indra/llrender')
-rw-r--r-- | indra/llrender/llgl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llrender/llgl.cpp b/indra/llrender/llgl.cpp index fdb674c433..3f78ab20d0 100644 --- a/indra/llrender/llgl.cpp +++ b/indra/llrender/llgl.cpp @@ -576,7 +576,7 @@ bool LLGLManager::initGL() #endif } - if (mGLVersion >= 3.f && LLImageGL::sCompressTextures) + if (mGLVersion >= 2.1f && LLImageGL::sCompressTextures) { //use texture compression glHint(GL_TEXTURE_COMPRESSION_HINT, GL_NICEST); } |