diff options
author | RunitaiLinden <davep@lindenlab.com> | 2023-10-02 14:19:04 -0500 |
---|---|---|
committer | RunitaiLinden <davep@lindenlab.com> | 2023-10-02 14:19:04 -0500 |
commit | bc4e90ea5e462662f90c860d69aaa53b88f189c5 (patch) | |
tree | 99d6827c65cdc9afcbab1fc99ecc57136d98ed2a /indra/newview/llreflectionmapmanager.h | |
parent | 3da26ee8df6cc7e57ba3acbb91437ec97e151002 (diff) |
SL-20124 Wipe reflection probes when applying parcel EEP settings and pause updates on probes until transition completes.
Diffstat (limited to 'indra/newview/llreflectionmapmanager.h')
-rw-r--r-- | indra/newview/llreflectionmapmanager.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/indra/newview/llreflectionmapmanager.h b/indra/newview/llreflectionmapmanager.h index 5a3901cae9..b77a33da89 100644 --- a/indra/newview/llreflectionmapmanager.h +++ b/indra/newview/llreflectionmapmanager.h @@ -84,6 +84,12 @@ public: // reset all state on the next update void reset(); + // pause all updates other than the default probe + void pause(); + + // unpause (see pause) + void resume(); + // called on region crossing to "shift" probes into new coordinate frame void shift(const LLVector4a& offset); @@ -191,5 +197,8 @@ private: // if true, reset all probe render state on the next update (for teleports and sky changes) bool mReset = false; + + // if true, only update the default probe + bool mPaused = false; }; |