diff options
author | Dave Parks <davep@lindenlab.com> | 2009-12-16 11:20:44 -0600 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2009-12-16 11:20:44 -0600 |
commit | edb67a898c4d20a1d4f18ad0db9ad02d6157b2ed (patch) | |
tree | ee8006d71074b5e067a232f8dba6287afe511c7e /indra/newview/llviewertexture.h | |
parent | c6aaf115ade4b335df9ca479992b08e028ffd910 (diff) |
Convert ll_face_list_t in llviewertexture to a std::set to improve performance on face deletion.
Diffstat (limited to 'indra/newview/llviewertexture.h')
-rw-r--r-- | indra/newview/llviewertexture.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewertexture.h b/indra/newview/llviewertexture.h index 141979052d..bf4b1cf800 100644 --- a/indra/newview/llviewertexture.h +++ b/indra/newview/llviewertexture.h @@ -139,7 +139,7 @@ public: static S32 getIndexFromCategory(S32 category) ; static S32 getCategoryFromIndex(S32 index) ; - typedef std::list<LLFace*> ll_face_list_t ; + typedef std::set<LLFace*> ll_face_list_t ; protected: virtual ~LLViewerTexture(); |