Fix #115548: Missed sort after multithreaded algorithm

To make sure result is deterministic, sorting is used.
This was missed in one of last speedup.

Pull Request: https://projects.blender.org/blender/blender/pulls/115568
This commit is contained in:
Iliya Katueshenock
2023-11-29 14:16:37 +01:00
committed by Hans Goudey
parent 7a7b7196f9
commit 2ce4c4e8d2

View File

@@ -403,6 +403,7 @@ GroupedSpan<int> build_vert_to_edge_map(const Span<int2> edges,
}
}
});
sort_small_groups(offsets, 1024, r_indices);
return {offsets, r_indices};
}