diff options
| author | Dave Parks <davep@lindenlab.com> | 2011-12-13 14:37:20 -0600 | 
|---|---|---|
| committer | Dave Parks <davep@lindenlab.com> | 2011-12-13 14:37:20 -0600 | 
| commit | 4e92846cd5ca304537ef3105a880f0c14ba02e3c (patch) | |
| tree | cf1e345aff4ec4107d10d0be21b7a97ae3fa1725 | |
| parent | bccf5e6ca18f8e979f62b35d85280b5aa282ea20 (diff) | |
SH-1427 Fix for redundantly applying light intensity to deferred lights.
| -rw-r--r-- | indra/newview/pipeline.cpp | 9 | 
1 files changed, 3 insertions, 6 deletions
| diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 00acc3e511..8449e74fb6 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -7452,8 +7452,7 @@ void LLPipeline::renderDeferredLighting()  					F32 s = volume->getLightRadius()*1.5f;  					LLColor3 col = volume->getLightColor(); -					col *= volume->getLightIntensity(); - +					  					if (col.magVecSquared() < 0.001f)  					{  						continue; @@ -7566,8 +7565,7 @@ void LLPipeline::renderDeferredLighting()  					setupSpotLight(gDeferredSpotLightProgram, drawablep);  					LLColor3 col = volume->getLightColor(); -					col *= volume->getLightIntensity(); - +					  					//vertex positions are encoded so the 3 bits of their vertex index   					//correspond to their axis facing, with bit position 3,2,1 matching  					//axis facing x,y,z, bit set meaning positive facing, bit clear  @@ -7676,8 +7674,7 @@ void LLPipeline::renderDeferredLighting()  					setupSpotLight(gDeferredMultiSpotLightProgram, drawablep);  					LLColor3 col = volume->getLightColor(); -					col *= volume->getLightIntensity(); - +					  					gDeferredMultiSpotLightProgram.uniform3fv(LLShaderMgr::LIGHT_CENTER, 1, tc.v);  					gDeferredMultiSpotLightProgram.uniform1f(LLShaderMgr::LIGHT_SIZE, s*s);  					gDeferredMultiSpotLightProgram.uniform3fv(LLShaderMgr::DIFFUSE_COLOR, 1, col.mV); | 
