diff options
| author | Oz Linden <oz@lindenlab.com> | 2013-06-18 13:21:27 -0400 | 
|---|---|---|
| committer | Oz Linden <oz@lindenlab.com> | 2013-06-18 13:21:27 -0400 | 
| commit | 1eb20a8522c031e2a2934765625a7537c4252c5f (patch) | |
| tree | 90016593f729006ff07c2ba10a9794423c3fedd5 | |
| parent | cb5289e02a4003ca7057a392d41127b36614658c (diff) | |
correct banding issue
| -rwxr-xr-x | indra/newview/pipeline.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 8942092221..ebf6be4e36 100755 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -1395,7 +1395,7 @@ void LLPipeline::createLUTBuffers()  			LLImageGL::setManualImage(LLTexUnit::getInternalType(LLTexUnit::TT_TEXTURE), 0, GL_R16F, lightResX, lightResY, GL_RED, GL_FLOAT, ls, false);  			//LLImageGL::setManualImage(LLTexUnit::getInternalType(LLTexUnit::TT_TEXTURE), 0, GL_UNSIGNED_BYTE, lightResX, lightResY, GL_RED, GL_UNSIGNED_BYTE, ls, false);  			gGL.getTexUnit(0)->setTextureAddressMode(LLTexUnit::TAM_CLAMP); -			gGL.getTexUnit(0)->setTextureFilteringOption(LLTexUnit::TFO_POINT); +			gGL.getTexUnit(0)->setTextureFilteringOption(LLTexUnit::TFO_TRILINEAR);  			delete [] ls;  		} | 
