diff options
author | Dave Parks <davep@lindenlab.com> | 2022-10-11 16:33:51 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2022-10-11 16:33:51 -0500 |
commit | dafa93304335c3c48042e4b5a014dea2480f253f (patch) | |
tree | 6fddc41b3952de3d3542da59543e7c4b75cb886b /indra/newview/llreflectionmapmanager.h | |
parent | 3ac80d7ec2a1c04e3e4f191285aa5a19f071a40d (diff) |
SL-18190 Fix for mystery circle showing up on east side of reflection probes. Add one probe to rule them all as a fallback for pixels that aren't inside any influence volume.
Diffstat (limited to 'indra/newview/llreflectionmapmanager.h')
-rw-r--r-- | indra/newview/llreflectionmapmanager.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llreflectionmapmanager.h b/indra/newview/llreflectionmapmanager.h index 4dcd822677..14b762998a 100644 --- a/indra/newview/llreflectionmapmanager.h +++ b/indra/newview/llreflectionmapmanager.h @@ -155,6 +155,8 @@ private: LLReflectionMap* mUpdatingProbe = nullptr; U32 mUpdatingFace = 0; + LLPointer<LLReflectionMap> mDefaultProbe; // default reflection probe to fall back to for pixels with no probe influences (should always be at cube index 0) + // number of reflection probes to use for rendering (based on saved setting RenderReflectionProbeCount) U32 mReflectionProbeCount; }; |