summaryrefslogtreecommitdiff
path: root/indra/llmeshoptimizer
diff options
context:
space:
mode:
authorAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2026-01-10 01:13:06 +0200
committerAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2026-01-10 02:48:10 +0200
commit5fbd5a15f37a45582704388a39cceb12cb80feb0 (patch)
treea3b84c28be1716f3b1fb6100c1c93ed97fe23b25 /indra/llmeshoptimizer
parentd541eb9c300a5e362e059442e60ab83d97050d82 (diff)
#5249 Update mesh optimizer to v1.0.1
According to change log it fixes the indices assert among other changes.
Diffstat (limited to 'indra/llmeshoptimizer')
-rw-r--r--indra/llmeshoptimizer/llmeshoptimizer.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/indra/llmeshoptimizer/llmeshoptimizer.cpp b/indra/llmeshoptimizer/llmeshoptimizer.cpp
index 7339454367..76d51fdad0 100644
--- a/indra/llmeshoptimizer/llmeshoptimizer.cpp
+++ b/indra/llmeshoptimizer/llmeshoptimizer.cpp
@@ -171,7 +171,6 @@ size_t LLMeshOptimizer::generateRemapMultiU32(
// but providing indices helps with removing unused vertices
U64 indeces_cmp = indices ? index_count : vertex_count;
- // meshopt_generateVertexRemapMulti will throw an assert if (indices[i] >= vertex_count)
return meshopt_generateVertexRemapMulti(&remap[0], indices, indeces_cmp, vertex_count, streams, sizeof(streams) / sizeof(streams[0]));
}