summaryrefslogtreecommitdiff
path: root/indra/newview/llreflectionmap.cpp
diff options
context:
space:
mode:
authorJonathan "Geenz" Goodman <geenz@geenzo.com>2023-09-29 16:25:25 -0700
committerJonathan "Geenz" Goodman <geenz@geenzo.com>2023-09-29 16:25:25 -0700
commit1d3d94a514a74b41f1fafaef45e105774d5d8505 (patch)
treedd34d5c5cf6027206d9fbc56d9e0815a679fd1e1 /indra/newview/llreflectionmap.cpp
parent32bfafca4dab088b5aab89affb233aaaac65666a (diff)
Add probe near clipping.
DRTVWR-583
Diffstat (limited to 'indra/newview/llreflectionmap.cpp')
-rw-r--r--indra/newview/llreflectionmap.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/indra/newview/llreflectionmap.cpp b/indra/newview/llreflectionmap.cpp
index 07c712a9a6..06624e8fea 100644
--- a/indra/newview/llreflectionmap.cpp
+++ b/indra/newview/llreflectionmap.cpp
@@ -49,7 +49,7 @@ LLReflectionMap::~LLReflectionMap()
}
}
-void LLReflectionMap::update(U32 resolution, U32 face, bool force_dynamic)
+void LLReflectionMap::update(U32 resolution, U32 face, bool force_dynamic, F32 near_clip)
{
LL_PROFILE_ZONE_SCOPED_CATEGORY_DISPLAY;
mLastUpdateTime = gFrameTimeSeconds;
@@ -63,8 +63,10 @@ void LLReflectionMap::update(U32 resolution, U32 face, bool force_dynamic)
{
resolution /= 2;
}
+
+ F32 clip = (near_clip > 0) ? near_clip : getNearClip();
- gViewerWindow->cubeSnapshot(LLVector3(mOrigin), mCubeArray, mCubeIndex, face, getNearClip(), getIsDynamic() || force_dynamic);
+ gViewerWindow->cubeSnapshot(LLVector3(mOrigin), mCubeArray, mCubeIndex, face, clip, getIsDynamic() || force_dynamic);
}
void LLReflectionMap::autoAdjustOrigin()