diff options
author | Xiaohong Bao <none@none> | 2009-11-11 14:53:13 -0800 |
---|---|---|
committer | Xiaohong Bao <none@none> | 2009-11-11 14:53:13 -0800 |
commit | f884941a8f182b43d8bb0030b17b686fa311eaee (patch) | |
tree | e3c347b47a2cbabcb7ea5b7cac20f00737610cec /indra/newview/llworldmipmap.cpp | |
parent | 25d8cf689aa04a1bd4ebb336714730d29040d05c (diff) |
use "LLViewerTexture::EBoostLevel" to replace "S32" for texture boost level.
Diffstat (limited to 'indra/newview/llworldmipmap.cpp')
-rw-r--r-- | indra/newview/llworldmipmap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llworldmipmap.cpp b/indra/newview/llworldmipmap.cpp index 8d3165b98c..9897f40c4e 100644 --- a/indra/newview/llworldmipmap.cpp +++ b/indra/newview/llworldmipmap.cpp @@ -196,7 +196,7 @@ LLPointer<LLViewerFetchedTexture> LLWorldMipmap::loadObjectsTile(U32 grid_x, U32 // END DEBUG //LL_INFOS("World Map") << "LLWorldMipmap::loadObjectsTile(), URL = " << imageurl << LL_ENDL; - LLPointer<LLViewerFetchedTexture> img = LLViewerTextureManager::getFetchedTextureFromUrl(imageurl, TRUE, FALSE, LLViewerTexture::LOD_TEXTURE); + LLPointer<LLViewerFetchedTexture> img = LLViewerTextureManager::getFetchedTextureFromUrl(imageurl, TRUE, LLViewerTexture::BOOST_NONE, LLViewerTexture::LOD_TEXTURE); img->setBoostLevel(LLViewerTexture::BOOST_MAP); // Return the smart pointer |