Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_mesh.h')
-rw-r--r--source/blender/bmesh/intern/bmesh_mesh.h15
1 files changed, 12 insertions, 3 deletions
diff --git a/source/blender/bmesh/intern/bmesh_mesh.h b/source/blender/bmesh/intern/bmesh_mesh.h
index 1cc9f4a6aca..dd987e96582 100644
--- a/source/blender/bmesh/intern/bmesh_mesh.h
+++ b/source/blender/bmesh/intern/bmesh_mesh.h
@@ -155,6 +155,15 @@ void BM_untag_vertices_by_tag(BMesh *bm, int tag);
void BM_untag_edges_by_tag(BMesh *bm, int tag);
void BM_untag_faces_by_tag(BMesh *bm, int tag);
-void BM_tag_new_vertices(BMesh *bm, BMOperator *b_mesh_operator);
-void BM_tag_new_edges(BMesh *bm, BMOperator *b_mesh_operator);
-void BM_tag_new_faces(BMesh *bm, BMOperator *b_mesh_operator); \ No newline at end of file
+void BM_tag_vertices_from_operator_slot(BMesh *bm,
+ BMOperator *b_mesh_operator,
+ const char *slot,
+ const int tag);
+void BM_tag_edges_from_operator_slot(BMesh *bm,
+ BMOperator *b_mesh_operator,
+ const char *slot,
+ const int tag);
+void BM_tag_faces_from_operator_slot(BMesh *bm,
+ BMOperator *b_mesh_operator,
+ const char *slot,
+ const int tag);