diff options
| author | Brad Linden <46733234+brad-linden@users.noreply.github.com> | 2024-06-12 18:03:31 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-12 18:03:31 -0700 |
| commit | 162c87a0a852952cf8dca05d37211403612a9933 (patch) | |
| tree | 3e8744a63723d3a3a3490ec6554070d0272e0f70 /indra/newview/lltinygltfhelper.cpp | |
| parent | 100ebbab2437de7f5d124a0d7b8279a7a7b57656 (diff) | |
| parent | 15b3c9f1643368fe0c5356ea11288525bbe9fbb3 (diff) | |
Merge pull request #1746 from Ansariel/develop
Fix a few merge issues
Diffstat (limited to 'indra/newview/lltinygltfhelper.cpp')
| -rw-r--r-- | indra/newview/lltinygltfhelper.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/lltinygltfhelper.cpp b/indra/newview/lltinygltfhelper.cpp index 7508956fd5..168708ca37 100644 --- a/indra/newview/lltinygltfhelper.cpp +++ b/indra/newview/lltinygltfhelper.cpp @@ -91,14 +91,14 @@ void LLTinyGLTFHelper::initFetchedTextures(tinygltf::Material& material, { if (material.pbrMetallicRoughness.metallicRoughnessTexture.index != material.occlusionTexture.index) { - LLImageDataLock lockIn(occlusion_img); - LLImageDataLock lockOut(mr_img); // occlusion is a distinct texture from pbrMetallicRoughness // pack into mr red channel int occlusion_idx = material.occlusionTexture.index; int mr_idx = material.pbrMetallicRoughness.metallicRoughnessTexture.index; if (occlusion_idx != mr_idx) { + LLImageDataLock lockIn(occlusion_img); + LLImageDataLock lockOut(mr_img); //scale occlusion image to match resolution of mr image occlusion_img->scale(mr_img->getWidth(), mr_img->getHeight()); |
