Skip to content
Snippets Groups Projects
Commit 872b3648 authored by Graham Linden's avatar Graham Linden
Browse files

Modify spotlight prio calc to more stable version.

parent 92f79a7c
No related branches found
No related tags found
No related merge requests found
...@@ -3278,6 +3278,7 @@ void LLVOVolume::updateSpotLightPriority() ...@@ -3278,6 +3278,7 @@ void LLVOVolume::updateSpotLightPriority()
F32 r = getLightRadius(); F32 r = getLightRadius();
LLVector3 pos = mDrawable->getPositionAgent(); LLVector3 pos = mDrawable->getPositionAgent();
#if OLD_SPOT_PRIO_CALC
LLVector3 at(0,0,-1); LLVector3 at(0,0,-1);
at *= getRenderRotation(); at *= getRenderRotation();
pos += at * r; pos += at * r;
...@@ -3286,8 +3287,9 @@ void LLVOVolume::updateSpotLightPriority() ...@@ -3286,8 +3287,9 @@ void LLVOVolume::updateSpotLightPriority()
pos -= at * r; pos -= at * r;
mSpotLightPriority = gPipeline.calcPixelArea(pos, LLVector3(r,r,r), *LLViewerCamera::getInstance()); mSpotLightPriority = gPipeline.calcPixelArea(pos, LLVector3(r,r,r), *LLViewerCamera::getInstance());
#else
//mSpotLightPriority = (gAgent.getPositionAgent() - pos).length() + r; mSpotLightPriority = (gAgent.getPositionAgent() - pos).length() + r;
#endif
if (mLightTexture.notNull()) if (mLightTexture.notNull())
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment