diff options
author | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2024-11-20 01:08:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-20 01:08:35 +0200 |
commit | 6c6b38821ef0ea452b640b31006a8ef4f2dfef55 (patch) | |
tree | 19da310a7a41472caa96d56cc90d46e19a3e1ff6 /indra/newview | |
parent | 8d52d06fcbffa33dad4412480471275068387c87 (diff) |
#3093 World Map tiles are blurry
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llviewertexture.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewertexture.cpp b/indra/newview/llviewertexture.cpp index c10e28d688..03c586b270 100644 --- a/indra/newview/llviewertexture.cpp +++ b/indra/newview/llviewertexture.cpp @@ -2917,7 +2917,7 @@ void LLViewerLODTexture::processTextureStats() mDesiredDiscardLevel = 0; } // Generate the request priority and render priority - else if (mDontDiscard || !mUseMipMaps) + else if (mDontDiscard || !mUseMipMaps || (getFTType() == FTT_MAP_TILE)) { mDesiredDiscardLevel = 0; if (mFullWidth > MAX_IMAGE_SIZE_DEFAULT || mFullHeight > MAX_IMAGE_SIZE_DEFAULT) |