diff options
| author | Dave Parks <davep@lindenlab.com> | 2024-08-20 06:59:07 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-20 06:59:07 -0500 |
| commit | ed6732eda8c80d17e05bbc6563b6ce08ef6b8c72 (patch) | |
| tree | 405831690453e0c015131ad4d73a89063b0d4450 /indra/newview/lltextureview.cpp | |
| parent | 16c9c47f14411263889798d89eaa6dde9b1e4771 (diff) | |
#2315 Ensure textures are deleted when they are no longer referenced. (#2343)
* #2315 WIP -- Clean up deletion rules in texture list. Incidental decruft.
* Touch up assertions.
* Move mLastReferencedTimer to LLViewerMediaTexture since it's no longer used by LLViewerTexture
Diffstat (limited to 'indra/newview/lltextureview.cpp')
| -rw-r--r-- | indra/newview/lltextureview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lltextureview.cpp b/indra/newview/lltextureview.cpp index 9eaee2e326..ca3386948d 100644 --- a/indra/newview/lltextureview.cpp +++ b/indra/newview/lltextureview.cpp @@ -836,7 +836,7 @@ void LLTextureView::draw() for (LLViewerTextureList::image_list_t::iterator iter = gTextureList.mImageList.begin(); iter != gTextureList.mImageList.end(); ) { - LLPointer<LLViewerFetchedTexture> imagep = *iter++; + LLViewerFetchedTexture* imagep = *iter++; if(!imagep->hasFetcher()) { continue ; |
