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/llrender | |
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/llrender')
-rw-r--r-- | indra/llrender/llgltexture.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/indra/llrender/llgltexture.h b/indra/llrender/llgltexture.h index a7de20dc5c..122d2a7f9c 100644 --- a/indra/llrender/llgltexture.h +++ b/indra/llrender/llgltexture.h @@ -82,8 +82,6 @@ public: typedef enum { DELETED = 0, //removed from memory - DELETION_CANDIDATE, //ready to be removed from memory - INACTIVE, //not be used for the last certain period (i.e., 30 seconds). ACTIVE, //just being used, can become inactive if not being used for a certain time (10 seconds). NO_DELETE = 99 //stay in memory, can not be removed. } LLGLTextureState; |