diff options
| author | Oz Linden <oz@lindenlab.com> | 2012-07-24 10:51:37 -0400 |
|---|---|---|
| committer | Oz Linden <oz@lindenlab.com> | 2012-07-24 10:51:37 -0400 |
| commit | 8df36196215131cbac961f47bfbd4a1b925548cb (patch) | |
| tree | 35fe890f1f2e47c9acd0d411925897ee7e3794d6 /indra/newview/llface.h | |
| parent | 4feef5af63f6294249aa50e37fba712cd9ddec91 (diff) | |
| parent | d7015a2b9b55907c8447d0051cf5d7ac862aebf7 (diff) | |
merge to viewer-developmento
Diffstat (limited to 'indra/newview/llface.h')
| -rw-r--r-- | indra/newview/llface.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/indra/newview/llface.h b/indra/newview/llface.h index 76ea5c853a..efc3424858 100644 --- a/indra/newview/llface.h +++ b/indra/newview/llface.h @@ -59,6 +59,17 @@ class LLFace { public: + void* operator new(size_t size) + { + return ll_aligned_malloc_16(size); + } + + void operator delete(void* ptr) + { + ll_aligned_free_16(ptr); + } + + LLFace(const LLFace& rhs) { *this = rhs; @@ -79,6 +90,7 @@ public: USE_FACE_COLOR = 0x0010, TEXTURE_ANIM = 0x0020, RIGGED = 0x0040, + PARTICLE = 0x0080, }; static void initClass(); |
