summaryrefslogtreecommitdiff
path: root/indra/llmath/llvolumeoctree.cpp
diff options
context:
space:
mode:
authorDave Parks <davep@lindenlab.com>2010-11-21 03:25:22 -0600
committerDave Parks <davep@lindenlab.com>2010-11-21 03:25:22 -0600
commit81ba8b8bc61addcb77e4f6d7d637a3401de295bd (patch)
treeee32d4212c48ca99d7398fe6d47d30448efa0ef1 /indra/llmath/llvolumeoctree.cpp
parentc149a0020bfc6983e7ce7a2426f324a6b8e75495 (diff)
Get rid of more ll_aligned_malloc calls.
Diffstat (limited to 'indra/llmath/llvolumeoctree.cpp')
-rw-r--r--indra/llmath/llvolumeoctree.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/indra/llmath/llvolumeoctree.cpp b/indra/llmath/llvolumeoctree.cpp
index cc97026ad4..b5a935c2b5 100644
--- a/indra/llmath/llvolumeoctree.cpp
+++ b/indra/llmath/llvolumeoctree.cpp
@@ -78,14 +78,11 @@ BOOL LLLineSegmentBoxIntersect(const LLVector4a& start, const LLVector4a& end, c
LLVolumeOctreeListener::LLVolumeOctreeListener(LLOctreeNode<LLVolumeTriangle>* node)
{
node->addListener(this);
-
- mBounds = (LLVector4a*) ll_aligned_malloc_16(sizeof(LLVector4a)*4);
- mExtents = mBounds+2;
}
LLVolumeOctreeListener::~LLVolumeOctreeListener()
{
- ll_aligned_free_16(mBounds);
+
}
void LLVolumeOctreeListener::handleChildAddition(const LLOctreeNode<LLVolumeTriangle>* parent,