Fix T102522: Geometry nodes boolean doesent respect material index

The refactor in f1c0249f34 incorrectly placed the material index
remapping before the transfer of generic attributes. Now that the
material index is a generic attribute, it was overwritten.
This commit is contained in:
Hans Goudey 2022-11-21 15:49:18 -06:00
parent 03b5be4e3c
commit b53c4fa8da
Notes: blender-bot 2023-02-14 08:06:38 +01:00
Referenced by issue #102522, GN: Boolean doesent respect material index
1 changed files with 11 additions and 10 deletions

View File

@ -410,16 +410,6 @@ static void copy_poly_attributes(Mesh *dest_mesh,
Span<short> material_remap,
MutableSpan<int> dst_material_indices)
{
const VArray<int> src_material_indices = orig_me->attributes().lookup_or_default<int>(
"material_index", ATTR_DOMAIN_FACE, 0);
const int src_index = src_material_indices[index_in_orig_me];
if (material_remap.size() > 0 && material_remap.index_range().contains(src_index)) {
dst_material_indices[mp_index] = material_remap[src_index];
}
else {
dst_material_indices[mp_index] = src_index;
}
mp->flag = orig_mp->flag;
CustomData *target_cd = &dest_mesh->pdata;
const CustomData *source_cd = &orig_me->pdata;
@ -435,6 +425,17 @@ static void copy_poly_attributes(Mesh *dest_mesh,
source_cd, target_cd, source_layer_i, target_layer_i, index_in_orig_me, mp_index, 1);
}
}
/* Fix material indices after they have been transferred as a generic attribute. */
const VArray<int> src_material_indices = orig_me->attributes().lookup_or_default<int>(
"material_index", ATTR_DOMAIN_FACE, 0);
const int src_index = src_material_indices[index_in_orig_me];
if (material_remap.size() > 0 && material_remap.index_range().contains(src_index)) {
dst_material_indices[mp_index] = material_remap[src_index];
}
else {
dst_material_indices[mp_index] = src_index;
}
}
/* Similar to copy_vert_attributes but for edge attributes. */