diff options
| author | Runitai Linden <davep@lindenlab.com> | 2021-10-14 13:02:40 -0500 |
|---|---|---|
| committer | Runitai Linden <davep@lindenlab.com> | 2021-10-14 13:02:40 -0500 |
| commit | e7227afe0249806ceb1c8eef2dd6ca909eb394d3 (patch) | |
| tree | 73f963dced3b069339f4d02f80a8559e1d6b270b /indra/newview/llvovolume.cpp | |
| parent | aa2169aa372492b3a5367997536fb6dfa89b74cf (diff) | |
SL-16166 Apply optimizations from pushBatch to other render call sites. Optimize out a map lookup in rigged face rendering.
Diffstat (limited to 'indra/newview/llvovolume.cpp')
| -rw-r--r-- | indra/newview/llvovolume.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp index e5a4b0f374..b86935b081 100644 --- a/indra/newview/llvovolume.cpp +++ b/indra/newview/llvovolume.cpp @@ -3555,7 +3555,7 @@ const LLMeshSkinInfo* LLVOVolume::getSkinInfo() const { if (getVolume()) { - return gMeshRepo.getSkinInfo(getVolume()->getParams().getSculptID(), this); + return gMeshRepo.getSkinInfo(getMeshID(), this); } else { |
