summaryrefslogtreecommitdiff
path: root/indra/newview/llreflectionmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llreflectionmap.h')
-rw-r--r--indra/newview/llreflectionmap.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llreflectionmap.h b/indra/newview/llreflectionmap.h
index ed1c2680b6..305f33af4b 100644
--- a/indra/newview/llreflectionmap.h
+++ b/indra/newview/llreflectionmap.h
@@ -30,6 +30,7 @@
#include "llmemory.h"
class LLSpatialGroup;
+class LLViewerObject;
class alignas(16) LLReflectionMap : public LLRefCount
{
@@ -80,7 +81,12 @@ public:
// set of any LLReflectionMaps that intersect this map (maintained by LLReflectionMapManager
std::vector<LLReflectionMap*> mNeighbors;
+ // spatial group this probe is tracking (if any)
LLSpatialGroup* mGroup = nullptr;
+
+ // viewer object this probe is tracking (if any)
+ LLViewerObject* mViewerObject = nullptr;
+
bool mDirty = true;
};