diff options
author | Dave Parks <davep@lindenlab.com> | 2022-09-13 17:07:30 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2022-09-13 17:07:30 -0500 |
commit | ff3a28422dc65afe4cf3131daf953d0567711b8a (patch) | |
tree | 66a75ae1059d005a8073c6ae69b8b78fd357cea2 /indra/llrender/llrender.h | |
parent | ca5a6bb0b871de4aa5a719d34a1d2820acc31736 (diff) |
SL-17701 WIP -- Parity for point lights between opaque and transparent PBR materials
Diffstat (limited to 'indra/llrender/llrender.h')
-rw-r--r-- | indra/llrender/llrender.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/llrender/llrender.h b/indra/llrender/llrender.h index 095ed400f4..b1fb60cf92 100644 --- a/indra/llrender/llrender.h +++ b/indra/llrender/llrender.h @@ -246,6 +246,8 @@ public: void setSpotCutoff(const F32& cutoff); void setSpotDirection(const LLVector3& direction); void setSunPrimary(bool v); + void setSize(F32 size); + void setFalloff(F32 falloff); protected: friend class LLRender; @@ -266,6 +268,8 @@ protected: F32 mSpotExponent; F32 mSpotCutoff; + F32 mSize = 0.f; + F32 mFalloff = 0.f; }; class LLRender |