main sync #3

Merged
Patrick Busch merged 318 commits from blender/blender:main into main 2023-03-17 15:52:21 +01:00
Showing only changes of commit 8b2556e8d8 - Show all commits

View File

@ -369,8 +369,12 @@ static void mesh_merge_transform(Mesh *result,
static Mesh *arrayModifier_doArray(ArrayModifierData *amd,
const ModifierEvalContext *ctx,
const Mesh *mesh)
Mesh *mesh)
{
if (mesh->totvert == 0) {
return mesh;
}
MEdge *me;
MLoop *ml;
MPoly *mp;