diff options
Diffstat (limited to 'linden/indra/newview/lltexturecache.h')
-rw-r--r-- | linden/indra/newview/lltexturecache.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/linden/indra/newview/lltexturecache.h b/linden/indra/newview/lltexturecache.h index 68b1458..1e3ed5b 100644 --- a/linden/indra/newview/lltexturecache.h +++ b/linden/indra/newview/lltexturecache.h | |||
@@ -122,6 +122,7 @@ private: | |||
122 | void readHeaderCache(); | 122 | void readHeaderCache(); |
123 | void purgeAllTextures(bool purge_directories); | 123 | void purgeAllTextures(bool purge_directories); |
124 | void purgeTextures(bool validate); | 124 | void purgeTextures(bool validate); |
125 | void purgeTextureFilesTimeSliced(BOOL force_all = FALSE); | ||
125 | S32 getHeaderCacheEntry(const LLUUID& id, bool touch, S32* imagesize = NULL); | 126 | S32 getHeaderCacheEntry(const LLUUID& id, bool touch, S32* imagesize = NULL); |
126 | bool removeHeaderCacheEntry(const LLUUID& id); | 127 | bool removeHeaderCacheEntry(const LLUUID& id); |
127 | void lockHeaders() { mHeaderMutex.lock(); } | 128 | void lockHeaders() { mHeaderMutex.lock(); } |
@@ -142,6 +143,10 @@ private: | |||
142 | 143 | ||
143 | typedef std::vector<std::pair<LLPointer<Responder>, bool> > responder_list_t; | 144 | typedef std::vector<std::pair<LLPointer<Responder>, bool> > responder_list_t; |
144 | responder_list_t mCompletedList; | 145 | responder_list_t mCompletedList; |
146 | |||
147 | typedef std::list<std::string> filename_list_t; | ||
148 | filename_list_t mFilesToDelete; | ||
149 | LLTimer mTimeLastFileDelete; | ||
145 | 150 | ||
146 | BOOL mReadOnly; | 151 | BOOL mReadOnly; |
147 | 152 | ||