diff options
| author | Cosmic Linden <cosmic@lindenlab.com> | 2023-04-26 11:58:05 -0700 | 
|---|---|---|
| committer | Cosmic Linden <cosmic@lindenlab.com> | 2023-04-26 17:17:29 -0700 | 
| commit | 1b9a9cc976161080a821c85897c704b5af9a0e34 (patch) | |
| tree | fbb4ed0c2af1e4d08169215b464fd677129fb353 | |
| parent | 97dc4755ff2559e81720bdf87051eb1a50ff9bbb (diff) | |
SL-19653: Fix data mask assert: specular-normal blinn-phong in wrong bin
| -rw-r--r-- | indra/newview/llvovolume.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp index 421205af97..b482ded121 100644 --- a/indra/newview/llvovolume.cpp +++ b/indra/newview/llvovolume.cpp @@ -5910,7 +5910,7 @@ void LLVolumeGeometryManager::rebuildGeom(LLSpatialGroup* group)  						{                              LLGLTFMaterial* gltf_mat = te->getGLTFRenderMaterial(); -							if (gltf_mat != nullptr || (te->getMaterialParams().notNull()  && !te->getMaterialID().isNull())) +							if (gltf_mat != nullptr || (te->getMaterialParams().notNull()))  							{                                  if (gltf_mat != nullptr)                                  { | 
