diff options
| author | Adam Moss <moss@lindenlab.com> | 2009-06-20 09:17:56 +0000 | 
|---|---|---|
| committer | Adam Moss <moss@lindenlab.com> | 2009-06-20 09:17:56 +0000 | 
| commit | 8ed056fde9fe5fc9755158013a5cb8be73066e2c (patch) | |
| tree | d7f5f6de35c99ca645e48dc8817d908cc6d2f348 /indra/newview/lltextureview.cpp | |
| parent | 351ebe9fcb76f3b99c2957004bb8493a904869ee (diff) | |
svn merge -r124872:124873
svn+ssh://svn.lindenlab.com/svn/linden/branches/viewer/viewer-1.23.threefour-merge-1a
QAR-1592 Merge of changes between 1.23 RC2 and 1.23 Final to trunk
Diffstat (limited to 'indra/newview/lltextureview.cpp')
| -rw-r--r-- | indra/newview/lltextureview.cpp | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/indra/newview/lltextureview.cpp b/indra/newview/lltextureview.cpp index f00d5e5b48..d356bf99ae 100644 --- a/indra/newview/lltextureview.cpp +++ b/indra/newview/lltextureview.cpp @@ -384,10 +384,10 @@ private:  void LLGLTexMemBar::draw()  { -	S32 bound_mem = (LLViewerImage::sBoundTextureMemory >> 20); - 	S32 max_bound_mem = LLViewerImage::sMaxBoundTextureMem; -	S32 total_mem = (LLViewerImage::sTotalTextureMemory >> 20); -	S32 max_total_mem = LLViewerImage::sMaxTotalTextureMem; +	S32 bound_mem = BYTES_TO_MEGA_BYTES(LLViewerImage::sBoundTextureMemoryInBytes); + 	S32 max_bound_mem = LLViewerImage::sMaxBoundTextureMemInMegaBytes; +	S32 total_mem = BYTES_TO_MEGA_BYTES(LLViewerImage::sTotalTextureMemoryInBytes); +	S32 max_total_mem = LLViewerImage::sMaxTotalTextureMemInMegaBytes;  	F32 discard_bias = LLViewerImage::sDesiredDiscardBias;  	S32 line_height = (S32)(LLFontGL::getFontMonospace()->getLineHeight() + .5f); | 
