summaryrefslogtreecommitdiff
path: root/indra/newview/llspatialpartition.h
diff options
context:
space:
mode:
authorsimon <none@none>2013-05-09 15:30:49 -0700
committersimon <none@none>2013-05-09 15:30:49 -0700
commit5687b0c4df5c28cb6aa6cb33cf0d2c4bbe1b912e (patch)
tree8d1f9f3044adeb81778769fef0f57349fb5ca72f /indra/newview/llspatialpartition.h
parentee2fce8790b69d61845cc32fbf7cdce8a33b0dab (diff)
parent50bbb0b7ed542a5f9dee4f347531537beecddd26 (diff)
Merge
Diffstat (limited to 'indra/newview/llspatialpartition.h')
-rwxr-xr-xindra/newview/llspatialpartition.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/newview/llspatialpartition.h b/indra/newview/llspatialpartition.h
index 08e77855c4..e9be93ce98 100755
--- a/indra/newview/llspatialpartition.h
+++ b/indra/newview/llspatialpartition.h
@@ -70,12 +70,12 @@ protected:
public:
void* operator new(size_t size)
{
- return ll_aligned_malloc_16(size);
+ return ll_aligned_malloc(size,64);
}
void operator delete(void* ptr)
{
- ll_aligned_free_16(ptr);
+ ll_aligned_free(ptr);
}
@@ -121,6 +121,7 @@ public:
U32 mDrawMode;
U32 mBlendFuncSrc;
U32 mBlendFuncDst;
+ BOOL mHasGlow;
struct CompareTexture
{