summaryrefslogtreecommitdiff
path: root/indra/newview/llface.cpp
diff options
context:
space:
mode:
authorDave Parks <davep@lindenlab.com>2010-11-21 03:48:11 -0600
committerDave Parks <davep@lindenlab.com>2010-11-21 03:48:11 -0600
commit892d70f5d5ef4694f2624aacdffac2645df507ba (patch)
treec75cc36a713f5da2554e3dd71001b584a9dedffc /indra/newview/llface.cpp
parent81ba8b8bc61addcb77e4f6d7d637a3401de295bd (diff)
Prune ll_aligned_malloc/free calls out of lldrawable and llface
Diffstat (limited to 'indra/newview/llface.cpp')
-rw-r--r--indra/newview/llface.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/indra/newview/llface.cpp b/indra/newview/llface.cpp
index f5a04c8c81..b0e70b9402 100644
--- a/indra/newview/llface.cpp
+++ b/indra/newview/llface.cpp
@@ -146,8 +146,6 @@ void cylindricalProjection(LLVector2 &tc, const LLVector4a& normal, const LLVect
void LLFace::init(LLDrawable* drawablep, LLViewerObject* objp)
{
- mExtents = (LLVector4a*) ll_aligned_malloc_16(sizeof(LLVector4a)*2);
-
mLastUpdateTime = gFrameTimeSeconds;
mLastMoveTime = 0.f;
mLastSkinTime = gFrameTimeSeconds;
@@ -239,9 +237,6 @@ void LLFace::destroy()
mDrawablep = NULL;
mVObjp = NULL;
-
- ll_aligned_free_16(mExtents);
- mExtents = NULL;
}