diff options
author | Dave Parks <davep@lindenlab.com> | 2023-03-30 14:30:09 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2023-03-30 14:30:09 -0500 |
commit | 3494a61ebf6d9d5c5c68d4679dc8c9133f8c14f0 (patch) | |
tree | e428f4387a33e61f362bfb0dd241446989d3dd21 /indra | |
parent | b4fcca60f17f4451bac692313a0441e37c94459c (diff) |
DRTVWR-559 Fix for build breakage.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llreflectionmap.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llreflectionmap.h b/indra/newview/llreflectionmap.h index 6eff607ea5..d639f6a54c 100644 --- a/indra/newview/llreflectionmap.h +++ b/indra/newview/llreflectionmap.h @@ -90,6 +90,12 @@ public: // cube map used to sample this environment map LLPointer<LLCubeMapArray> mCubeArray; S32 mCubeIndex = -1; // index into cube map array or -1 if not currently stored in cube map array + + // probe has had at least one full update and is ready to render + bool mComplete = false; + + // fade in parameter for this probe + F32 mFadeIn = 0.f; // index into array packed by LLReflectionMapManager::getReflectionMaps // WARNING -- only valid immediately after call to getReflectionMaps |