diff options
author | Dave Parks <davep@lindenlab.com> | 2022-06-23 16:40:48 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2022-06-23 16:40:48 -0500 |
commit | 6c678648e0649ca1be62c79af792ffd85ce379a8 (patch) | |
tree | 05a7ddf6b74e8a6157f65195e309a78b69548924 /indra/newview/pipeline.cpp | |
parent | 394479d7cc48a0170854e07f14267e28ba247990 (diff) |
SL-17653 Last commit was accidentally partial
Diffstat (limited to 'indra/newview/pipeline.cpp')
-rw-r--r-- | indra/newview/pipeline.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 030c7b450d..c9f3eb9076 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -1647,6 +1647,7 @@ U32 LLPipeline::getPoolTypeFromTE(const LLTextureEntry* te, LLViewerTexture* ima } LLMaterial* mat = te->getMaterialParams().get(); + LLGLTFMaterial* gltf_mat = te->getGLTFMaterial(); bool color_alpha = te->getColor().mV[3] < 0.999f; bool alpha = color_alpha; @@ -1680,6 +1681,10 @@ U32 LLPipeline::getPoolTypeFromTE(const LLTextureEntry* te, LLViewerTexture* ima { return LLDrawPool::POOL_BUMP; } + else if (gltf_mat && !alpha) + { + return LLDrawPool::POOL_PBR_OPAQUE; + } else if (mat && !alpha) { return LLDrawPool::POOL_MATERIALS; |