diff options
author | Alexander Gavriliuk <alexandrgproductengine@lindenlab.com> | 2023-09-28 15:37:32 +0200 |
---|---|---|
committer | Guru <alexandrgproductengine@lindenlab.com> | 2023-09-28 22:17:42 +0200 |
commit | ddd67c3eced1f23a373f730c5de0b6eebefe033a (patch) | |
tree | 33a95b5033e8f4f75519752f5911c5a73f921a08 /indra/newview | |
parent | ad6dceb1c3e9024c93be6c7212b4d3687ca13e0d (diff) |
SL-20361 Avoid of ASSERT (false) in check_rigged_group()
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llspatialpartition.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llspatialpartition.cpp b/indra/newview/llspatialpartition.cpp index 8bd40f2f31..b39fa769a0 100644 --- a/indra/newview/llspatialpartition.cpp +++ b/indra/newview/llspatialpartition.cpp @@ -1616,6 +1616,7 @@ void pushVertsColorCoded(LLSpatialGroup* group, U32 mask) // - a linked rigged drawable face has the wrong draw order index bool check_rigged_group(LLDrawable* drawable) { +#if 0 if (drawable->isState(LLDrawable::RIGGED)) { LLSpatialGroup* group = drawable->getSpatialGroup(); @@ -1671,7 +1672,7 @@ bool check_rigged_group(LLDrawable* drawable) } } } - +#endif return true; } |