diff options
| author | Dave Parks <davep@lindenlab.com> | 2022-01-13 17:04:46 +0000 |
|---|---|---|
| committer | Dave Parks <davep@lindenlab.com> | 2022-01-13 17:04:46 +0000 |
| commit | 04edc151851b7689853069b0748af9c64e94283f (patch) | |
| tree | fd400c8847e8e4837049dfb03ca3ee71e1e50189 /indra/newview/pipeline.cpp | |
| parent | ac233a46d80f31ceb160654b8186d4cf6a493511 (diff) | |
SL-16544 Fix for rigged mesh bounding boxes
Diffstat (limited to 'indra/newview/pipeline.cpp')
| -rw-r--r-- | indra/newview/pipeline.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 56fe4ac5af..d5f9772b85 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -1876,6 +1876,7 @@ void LLPipeline::resetFrameStats() //external functions for asynchronous updating void LLPipeline::updateMoveDampedAsync(LLDrawable* drawablep) { + LL_PROFILE_ZONE_SCOPED; if (FreezeTime) { return; @@ -1906,6 +1907,7 @@ void LLPipeline::updateMoveDampedAsync(LLDrawable* drawablep) void LLPipeline::updateMoveNormalAsync(LLDrawable* drawablep) { + LL_PROFILE_ZONE_SCOPED; if (FreezeTime) { return; @@ -1936,6 +1938,7 @@ void LLPipeline::updateMoveNormalAsync(LLDrawable* drawablep) void LLPipeline::updateMovedList(LLDrawable::drawable_vector_t& moved_list) { + LL_PROFILE_ZONE_SCOPED; for (LLDrawable::drawable_vector_t::iterator iter = moved_list.begin(); iter != moved_list.end(); ) { |
