summaryrefslogtreecommitdiff
path: root/indra/newview/llmeshrepository.h
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2025-01-30 23:02:53 +0200
committerAndrey Kleshchev <andreykproductengine@lindenlab.com>2025-01-31 03:41:04 +0200
commite97976831d883d9c8ff40a0442a5905ac05dd45a (patch)
treed28f7c98f6a077b3b96f209b1411eb6f511b348b /indra/newview/llmeshrepository.h
parentc405cd379a736722740ac241d36bcffb88c236c2 (diff)
#3488 Minimize allocations
Diffstat (limited to 'indra/newview/llmeshrepository.h')
-rw-r--r--indra/newview/llmeshrepository.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llmeshrepository.h b/indra/newview/llmeshrepository.h
index d11ea581cd..2e29daf9ec 100644
--- a/indra/newview/llmeshrepository.h
+++ b/indra/newview/llmeshrepository.h
@@ -576,6 +576,11 @@ private:
// Mutex: mMutex must be alerady locked when calling
void loadMeshLOD(const LLUUID &mesh_id, const LLVolumeParams& mesh_params, S32 lod);
+
+ // Threads: Repo thread only
+ U8* getDiskCacheBuffer(S32 size);
+ S32 mDiskCacheBufferSize = 0;
+ U8* mDiskCacheBuffer = nullptr;
};