diff options
| author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2025-01-30 23:02:53 +0200 |
|---|---|---|
| committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2025-01-31 03:41:04 +0200 |
| commit | e97976831d883d9c8ff40a0442a5905ac05dd45a (patch) | |
| tree | d28f7c98f6a077b3b96f209b1411eb6f511b348b /indra/newview/llmeshrepository.h | |
| parent | c405cd379a736722740ac241d36bcffb88c236c2 (diff) | |
#3488 Minimize allocations
Diffstat (limited to 'indra/newview/llmeshrepository.h')
| -rw-r--r-- | indra/newview/llmeshrepository.h | 5 |
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; }; |
