Geometry Nodes: Rewrite mesh delete geometry node #108435

Merged
Hans Goudey merged 24 commits from HooglyBoogly/blender:delete-mesh-rewrite into main 2023-06-01 14:55:27 +02:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit bbe60eb039 - Show all commits

View File

@ -17,7 +17,7 @@ static void create_reverse_map(const IndexMask &mask, MutableSpan<int> r_map)
r_map.fill(-1);
#endif
mask.foreach_index_optimized<int>(
GrainSize(4049), [&](const int src_i, const int dst_i) { r_map[src_i] = dst_i; });
GrainSize(4096), [&](const int src_i, const int dst_i) { r_map[src_i] = dst_i; });
HooglyBoogly marked this conversation as resolved Outdated

typo (4049)

typo (4049)
}
static void remap_verts(const OffsetIndices<int> src_polys,