summaryrefslogtreecommitdiff
path: root/indra/llprimitive/llmodel.cpp
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2012-09-12 14:36:37 -0400
committerOz Linden <oz@lindenlab.com>2012-09-12 14:36:37 -0400
commit97d969a338c1e4f973eb817ba7701aff51a02ccb (patch)
tree7e22b1d1f6fa600196dc9310364e45f563eab68e /indra/llprimitive/llmodel.cpp
parent094dc91d0dae4971f6ae89840d791466a6fd6d08 (diff)
initial attempt to restore changes that make removing tcmalloc possible; not tested
Diffstat (limited to 'indra/llprimitive/llmodel.cpp')
-rw-r--r--indra/llprimitive/llmodel.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llprimitive/llmodel.cpp b/indra/llprimitive/llmodel.cpp
index cb32a510b8..28ed051c55 100644
--- a/indra/llprimitive/llmodel.cpp
+++ b/indra/llprimitive/llmodel.cpp
@@ -1026,7 +1026,8 @@ void LLModel::setVolumeFaceData(
if (tc.get())
{
- LLVector4a::memcpyNonAliased16((F32*) face.mTexCoords, (F32*) tc.get(), num_verts*2*sizeof(F32));
+ U32 tex_size = (num_verts*2*sizeof(F32)+0xF)&~0xF;
+ LLVector4a::memcpyNonAliased16((F32*) face.mTexCoords, (F32*) tc.get(), tex_size);
}
else
{