diff options
author | Dave Parks <davep@lindenlab.com> | 2010-11-21 03:25:22 -0600 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2010-11-21 03:25:22 -0600 |
commit | 81ba8b8bc61addcb77e4f6d7d637a3401de295bd (patch) | |
tree | ee32d4212c48ca99d7398fe6d47d30448efa0ef1 /indra/llmath/llvolumeoctree.h | |
parent | c149a0020bfc6983e7ce7a2426f324a6b8e75495 (diff) |
Get rid of more ll_aligned_malloc calls.
Diffstat (limited to 'indra/llmath/llvolumeoctree.h')
-rw-r--r-- | indra/llmath/llvolumeoctree.h | 4 |
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> |