diff options
author | Jonathan "Geenz" Goodman <geenz@geenzo.com> | 2023-06-27 20:01:52 -0700 |
---|---|---|
committer | Jonathan "Geenz" Goodman <geenz@geenzo.com> | 2023-06-27 20:01:52 -0700 |
commit | d8dd4d9c0cd4554704cbe15b5502f4d87a4674ad (patch) | |
tree | a359cdd5b39994cf04a4370718bcaeb8a73a9613 /indra/newview/llvovolume.cpp | |
parent | db485adbeb1c7a7d64fbddd124f7f4c73214ef99 (diff) |
Just about got hero reflection maps working.
DRTVWR-583
Diffstat (limited to 'indra/newview/llvovolume.cpp')
-rw-r--r-- | indra/newview/llvovolume.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp index 8160785d75..8eacdd2162 100644 --- a/indra/newview/llvovolume.cpp +++ b/indra/newview/llvovolume.cpp @@ -2344,6 +2344,16 @@ S32 LLVOVolume::setTEFullbright(const U8 te, const U8 fullbright) return res; } +S32 LLVOVolume::setTERenderableTarget(const U8 te, const LLTextureEntry::eRenderableTarget mirror) +{ + S32 res = LLViewerObject::setTERenderableTarget(te, mirror); + if (res) + { + //gPipeline.markMirror(mDrawable); + } + return res; +} + S32 LLVOVolume::setTEBumpShinyFullbright(const U8 te, const U8 bump) { S32 res = LLViewerObject::setTEBumpShinyFullbright(te, bump); |