summaryrefslogtreecommitdiff
path: root/indra/newview/pipeline.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/pipeline.cpp')
-rw-r--r--indra/newview/pipeline.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp
index 4c951a9dea..792cad02bd 100644
--- a/indra/newview/pipeline.cpp
+++ b/indra/newview/pipeline.cpp
@@ -2783,23 +2783,6 @@ void LLPipeline::markShift(LLDrawable *drawablep)
}
}
-void LLPipeline::setMirror(LLDrawable *drawablep, bool is_mirror)
-{
- if (drawablep && assertInitialized())
- {
- if (is_mirror)
- {
- drawablep->setState(LLDrawable::MIRROR);
- mMirrorList.insert(drawablep);
- }
- else
- {
- mMirrorList.erase(drawablep);
- drawablep->clearState(LLDrawable::MIRROR);
- }
- }
-}
-
void LLPipeline::shiftObjects(const LLVector3 &offset)
{
LL_PROFILE_ZONE_SCOPED_CATEGORY_PIPELINE;
@@ -5852,11 +5835,6 @@ void LLPipeline::findReferences(LLDrawable *drawablep)
{
LL_INFOS() << "In mRetexturedList" << LL_ENDL;
}
-
- if (std::find(mMirrorList.begin(), mMirrorList.end(), drawablep) != mMirrorList.end())
- {
- LL_INFOS() << "In mMirrorList" << LL_ENDL;
- }
if (std::find(mBuildQ1.begin(), mBuildQ1.end(), drawablep) != mBuildQ1.end())
{