summaryrefslogtreecommitdiff
path: root/indra/llmath/llvolumeoctree.h
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.h
parentc149a0020bfc6983e7ce7a2426f324a6b8e75495 (diff)
Get rid of more ll_aligned_malloc calls.
Diffstat (limited to 'indra/llmath/llvolumeoctree.h')
-rw-r--r--indra/llmath/llvolumeoctree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llmath/llvolumeoctree.h b/indra/llmath/llvolumeoctree.h
index 63240ba022..f696cbd976 100644
--- a/indra/llmath/llvolumeoctree.h
+++ b/indra/llmath/llvolumeoctree.h
@@ -64,8 +64,8 @@ public:
public:
- LLVector4a* mBounds; // bounding box (center, size) of this node and all its children (tight fit to objects)
- LLVector4a* mExtents; // extents (min, max) of this node and all its children
+ LLVector4a mBounds[2]; // bounding box (center, size) of this node and all its children (tight fit to objects)
+ LLVector4a mExtents[2]; // extents (min, max) of this node and all its children
};
class LLOctreeTriangleRayIntersect : public LLOctreeTraveler<LLVolumeTriangle>