diff options
author | Xiaohong Bao <bao@lindenlab.com> | 2013-08-09 14:57:18 -0600 |
---|---|---|
committer | Xiaohong Bao <bao@lindenlab.com> | 2013-08-09 14:57:18 -0600 |
commit | c2601ec9c574ac3bd7a7f4001bc08572483028a6 (patch) | |
tree | c33cf021e26c9eb3d55749b49d5457d1dca1d2ed /indra/newview | |
parent | a6711a894c3c32ad24b47e36b2a52225713fd3ed (diff) |
fix for SH-4394: Interesting: viewer culls lights behind the camera, changing the scene lighting
Diffstat (limited to 'indra/newview')
-rwxr-xr-x | indra/newview/pipeline.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 87c3bf7bdf..f6e1f8342a 100755 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -6135,6 +6135,13 @@ void LLPipeline::calcNearbyLights(LLCamera& camera) } } + //mark nearby lights not-removable. + for (light_set_t::iterator iter = mNearbyLights.begin(); + iter != mNearbyLights.end(); iter++) + { + const Light* light = &(*iter); + ((LLViewerOctreeEntryData*) light->drawable)->setVisible(); + } } } |