Fix T38567: Branch smoothing on skin modifier broken

own regression when changing delete commands
This commit is contained in:
Campbell Barton 2014-02-19 16:43:13 +11:00
parent bf2f6d6161
commit c625658a92
Notes: blender-bot 2023-02-14 11:13:18 +01:00
Referenced by issue #38567, Branch smoothing on skin modifier broken in Blender DEV 2.69 +
1 changed files with 2 additions and 2 deletions

View File

@ -324,7 +324,7 @@ static int build_hull(SkinOutput *so, Frame **frames, int totframe)
BMO_op_finish(bm, &op);
BM_mesh_delete_hflag_context(bm, BM_ELEM_TAG, DEL_ONLYTAGGED);
BM_mesh_delete_hflag_tagged(bm, BM_ELEM_TAG, BM_EDGE | BM_FACE);
return TRUE;
}
@ -1430,7 +1430,7 @@ static void hull_merge_triangles(SkinOutput *so, const SkinModifierData *smd)
BLI_heap_free(heap, NULL);
BM_mesh_delete_hflag_context(so->bm, BM_ELEM_TAG, DEL_ONLYTAGGED);
BM_mesh_delete_hflag_tagged(so->bm, BM_ELEM_TAG, BM_EDGE | BM_FACE);
}