diff options
author | Xiaohong Bao <bao@lindenlab.com> | 2012-04-26 16:55:06 -0600 |
---|---|---|
committer | Xiaohong Bao <bao@lindenlab.com> | 2012-04-26 16:55:06 -0600 |
commit | 1df7655588a26529882a0ec97a7f23195f813468 (patch) | |
tree | 89d5bdc38636a9318739a0021adf8445f805700c /indra/newview/llviewertexture.cpp | |
parent | e344b2afa21adf072837f1bcf4b38dd511b76f0e (diff) |
for SH-3097: introducing texel pixel ration adjustment
Diffstat (limited to 'indra/newview/llviewertexture.cpp')
-rw-r--r-- | indra/newview/llviewertexture.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llviewertexture.cpp b/indra/newview/llviewertexture.cpp index a7e2ed85fa..6137b7176f 100644 --- a/indra/newview/llviewertexture.cpp +++ b/indra/newview/llviewertexture.cpp @@ -722,11 +722,14 @@ void LLViewerTexture::forceImmediateUpdate() void LLViewerTexture::addTextureStats(F32 virtual_size, BOOL needs_gltexture) const { + static LLCachedControl<F32> sTexelPixelRatio(gSavedSettings,"TexelPixelRatio"); + if(needs_gltexture) { mNeedsGLTexture = TRUE ; } + virtual_size *= sTexelPixelRatio; if(!mMaxVirtualSizeResetCounter) { //flag to reset the values because the old values are used. |