diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2024-06-17 13:56:46 +0300 |
---|---|---|
committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2024-06-17 17:19:12 +0300 |
commit | 6b251fb7a4308b7e2dbf995238866ff46ad6c780 (patch) | |
tree | 7e63bd7959ed22e39527647b8bc7e2a8f9cb0b0f /indra/newview/llmeshrepository.h | |
parent | 3d84a147f0ae781a71f74d9d7ad0b07f9b1ccb43 (diff) |
viewer#1781 More detailed model upload errors for textures
Show filename of a specific texture
Diffstat (limited to 'indra/newview/llmeshrepository.h')
-rw-r--r-- | indra/newview/llmeshrepository.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llmeshrepository.h b/indra/newview/llmeshrepository.h index e77a4a6af7..f605cfc0b9 100644 --- a/indra/newview/llmeshrepository.h +++ b/indra/newview/llmeshrepository.h @@ -523,7 +523,7 @@ public: void doWholeModelUpload(); void requestWholeModelFee(); - void wholeModelToLLSD(LLSD& dest, bool include_textures); + void wholeModelToLLSD(LLSD& dest, std::vector<std::string>& texture_list_dest, bool include_textures); void decomposeMeshMatrix(LLMatrix4& transformation, LLVector3& result_pos, @@ -544,6 +544,7 @@ private: bool mDoUpload; // if FALSE only model data will be requested, otherwise the model will be uploaded LLSD mModelData; + std::vector<std::string> mTextureFiles; // llcorehttp library interface objects. LLCore::HttpStatus mHttpStatus; |