summaryrefslogtreecommitdiff
path: root/indra/newview/llspatialpartition.h
diff options
context:
space:
mode:
authorDave Parks <davep@lindenlab.com>2010-11-21 04:40:59 -0600
committerDave Parks <davep@lindenlab.com>2010-11-21 04:40:59 -0600
commit4b5ddf1c41622e48bff79eba3f9bc50e73a1efb6 (patch)
tree45f4c52a4a74e01bb7862d80b477700d35e15baa /indra/newview/llspatialpartition.h
parent892d70f5d5ef4694f2624aacdffac2645df507ba (diff)
Remove ll_aligned_malloc from llspatialpartition
Diffstat (limited to 'indra/newview/llspatialpartition.h')
-rw-r--r--indra/newview/llspatialpartition.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/indra/newview/llspatialpartition.h b/indra/newview/llspatialpartition.h
index b65d510f21..16ec9f780b 100644
--- a/indra/newview/llspatialpartition.h
+++ b/indra/newview/llspatialpartition.h
@@ -86,7 +86,7 @@ public:
void validate();
- LLVector4a* mExtents;
+ LLVector4a mExtents[2];
LLPointer<LLVertexBuffer> mVertexBuffer;
LLPointer<LLViewerTexture> mTexture;
@@ -357,12 +357,12 @@ public:
V4_COUNT = 10
} eV4Index;
- 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* mObjectExtents; // extents (min, max) of objects in this node
- LLVector4a* mObjectBounds; // bounding box (center, size) of objects in this node
- LLVector4a* mViewAngle;
- LLVector4a* mLastUpdateViewAngle;
+ 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
+ LLVector4a mObjectExtents[2]; // extents (min, max) of objects in this node
+ LLVector4a mObjectBounds[2]; // bounding box (center, size) of objects in this node
+ LLVector4a mViewAngle;
+ LLVector4a mLastUpdateViewAngle;
private:
U32 mCurUpdatingTime ;