summaryrefslogtreecommitdiff
path: root/indra/newview/lltinygltfhelper.h
diff options
context:
space:
mode:
authorDave Parks <davep@lindenlab.com>2022-09-23 11:19:56 -0500
committerDave Parks <davep@lindenlab.com>2022-09-23 11:19:56 -0500
commit8f1d22686551f4d6783d03cd3685085ed7fcb96c (patch)
tree09dd1c2a7c13a433e8756080638448624281a86c /indra/newview/lltinygltfhelper.h
parent01d667109159666150816ff728fa941d2fb54299 (diff)
SL-18134 Rename Albedo to Base Color to be more consistent with GLTF spec
Diffstat (limited to 'indra/newview/lltinygltfhelper.h')
-rw-r--r--indra/newview/lltinygltfhelper.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/lltinygltfhelper.h b/indra/newview/lltinygltfhelper.h
index a25fdac41d..89e09b189e 100644
--- a/indra/newview/lltinygltfhelper.h
+++ b/indra/newview/lltinygltfhelper.h
@@ -42,12 +42,12 @@ namespace LLTinyGLTFHelper
LLImageRaw* getTexture(const std::string& folder, const tinygltf::Model& model, S32 texture_index);
void initFetchedTextures(tinygltf::Material& material,
- LLPointer<LLImageRaw>& albedo_img,
+ LLPointer<LLImageRaw>& base_color_img,
LLPointer<LLImageRaw>& normal_img,
LLPointer<LLImageRaw>& mr_img,
LLPointer<LLImageRaw>& emissive_img,
LLPointer<LLImageRaw>& occlusion_img,
- LLPointer<LLViewerFetchedTexture>& albedo_tex,
+ LLPointer<LLViewerFetchedTexture>& base_color_tex,
LLPointer<LLViewerFetchedTexture>& normal_tex,
LLPointer<LLViewerFetchedTexture>& mr_tex,
LLPointer<LLViewerFetchedTexture>& emissive_tex);