Cleanup: Use Span instead of MutableSpan for normals array

This commit is contained in:
Hans Goudey 2022-12-11 23:08:54 -06:00
parent 9e9ebcdd72
commit 2bb47e03f7
1 changed files with 1 additions and 1 deletions

View File

@ -822,7 +822,7 @@ struct LoopSplitTaskDataCommon {
Span<MEdge> edges;
Span<MLoop> loops;
Span<MPoly> polys;
MutableSpan<int2> edge_to_loops;
Span<int2> edge_to_loops;
Span<int> loop_to_poly;
Span<float3> polynors;
Span<float3> vert_normals;