diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-11-03 21:07:46 +0200 |
---|---|---|
committer | akleshchev <117672381+akleshchev@users.noreply.github.com> | 2023-11-06 18:29:42 +0200 |
commit | cc089d88ad5ab9088a5036e1d6f301d87cb3b127 (patch) | |
tree | 828f82b8e9fdd41c25a3b755b2bf34706cc27a3a /indra/newview/llfetchedgltfmaterial.cpp | |
parent | 0d8893822d8975194313e940914afc8945754a21 (diff) |
SL-20523 Ensure override gets updated before render material
Diffstat (limited to 'indra/newview/llfetchedgltfmaterial.cpp')
-rw-r--r-- | indra/newview/llfetchedgltfmaterial.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/newview/llfetchedgltfmaterial.cpp b/indra/newview/llfetchedgltfmaterial.cpp index a47b52fddc..1a47293523 100644 --- a/indra/newview/llfetchedgltfmaterial.cpp +++ b/indra/newview/llfetchedgltfmaterial.cpp @@ -183,6 +183,14 @@ bool LLFetchedGLTFMaterial::replaceLocalTexture(const LLUUID& tracking_id, const res = true; } + for (int i = 0; i < GLTF_TEXTURE_INFO_COUNT; ++i) + { + if (mTextureId[i] == new_id) + { + res = true; + } + } + if (res) { mTrackingIdToLocalTexture[tracking_id] = new_id; |