diff options
author | Jonathan "Geenz" Goodman <geenz@geenzo.com> | 2024-02-08 11:39:35 -0800 |
---|---|---|
committer | Jonathan "Geenz" Goodman <geenz@geenzo.com> | 2024-02-08 11:39:35 -0800 |
commit | 97d2b216212b3e106bb9129689e8eb162f9f68f5 (patch) | |
tree | c1cdbcb13ac049827dcf1720f85022bf510ff7ee /indra/newview/llheroprobemanager.h | |
parent | 192e77344f44d4a2d6bc765403b27f611b106240 (diff) |
#671 Setup the viewer to respect the MirrorsEnabled simulator feature.
Diffstat (limited to 'indra/newview/llheroprobemanager.h')
-rw-r--r-- | indra/newview/llheroprobemanager.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llheroprobemanager.h b/indra/newview/llheroprobemanager.h index 7485a8cd72..5ec1101b45 100644 --- a/indra/newview/llheroprobemanager.h +++ b/indra/newview/llheroprobemanager.h @@ -72,8 +72,8 @@ public: void unregisterViewerObject(LLVOVolume* drawablep); bool isMirrorPass() const { return mRenderingMirror; } + bool hasMirrors() const { return mHasMirrors; } - LLPlane currentMirrorClip() const { return mCurrentClipPlane; } LLVector3 mMirrorPosition; LLVector3 mMirrorNormal; @@ -135,6 +135,7 @@ private: bool mReset = false; bool mRenderingMirror = false; + bool mHasMirrors = false; std::set<LLVOVolume*> mHeroVOList; LLVOVolume* mNearestHero; |