diff options
author | Richard Nelson <none@none> | 2010-03-08 12:11:56 -0800 |
---|---|---|
committer | Richard Nelson <none@none> | 2010-03-08 12:11:56 -0800 |
commit | 62c4418e52c4af5b5cf6f118eedb1e4692829fbc (patch) | |
tree | 032ee0695c5cbed4ff2dff289f6a7965a75b6826 /indra | |
parent | b513766206a2ece12cb3a647051f52dc6d321087 (diff) | |
parent | aa56bb6274f3376dc0d28c37e3467d2398d5f48e (diff) |
merge
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/lltextureview.cpp | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/indra/newview/lltextureview.cpp b/indra/newview/lltextureview.cpp index a4ca33f10f..6cd8a78b25 100644 --- a/indra/newview/lltextureview.cpp +++ b/indra/newview/lltextureview.cpp @@ -658,6 +658,14 @@ struct compare_decode_pair } }; +struct KillView +{ + void operator()(LLView* viewp) const + { + viewp->die(); + } +}; + void LLTextureView::draw() { if (!mFreezeView) @@ -665,18 +673,12 @@ void LLTextureView::draw() // LLViewerObject *objectp; // S32 te; -//#if LL_DEBUG - BOOL drawing = LLView::sIsDrawing; - LLView::sIsDrawing = FALSE; -//#endif - for_each(mTextureBars.begin(), mTextureBars.end(), DeletePointer()); + for_each(mTextureBars.begin(), mTextureBars.end(), KillView()); mTextureBars.clear(); delete mGLTexMemBar; mGLTexMemBar = 0; -//#if LL_DEBUG - LLView::sIsDrawing = drawing ; -//#endif + typedef std::multiset<decode_pair_t, compare_decode_pair > display_list_t; display_list_t display_image_list; |