Geometry Nodes: add simulation support #104924

Closed
Hans Goudey wants to merge 211 commits from geometry-nodes-simulation into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
2 changed files with 0 additions and 6 deletions
Showing only changes of commit b60b1bff03 - Show all commits

View File

@ -2416,9 +2416,6 @@ static void ensure_layer_data_is_mutable(CustomDataLayer &layer, const int totel
layer.sharing_info->remove_user_and_delete_if_last();
layer.sharing_info = make_implicit_sharing_info_for_layer(type, layer.data, totelem);
}
else {
layer.sharing_info->tag_ensured_mutable();
}
}
void CustomData_realloc(CustomData *data, const int old_size, const int new_size)

View File

@ -54,9 +54,6 @@ void *make_trivial_data_mutable_impl(void *old_data,
*sharing_info = info_for_mem_free(new_data);
return new_data;
}
else {
(*sharing_info)->tag_ensured_mutable();
}
return old_data;
}