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:
authorCampbell Barton <ideasman42@gmail.com>2012-06-30 16:58:04 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-06-30 16:58:04 +0400
commite6d55c97ddea01ba08c9f01888adf715ab2c6ef0 (patch)
tree759b6a339e96ce9dd88bd41e71f5a5f3727b5f6e /source/blender/bmesh/intern/bmesh_operator_api.h
parent3e99ec8d3d9e6eccf1b891a0e66432026fc622c5 (diff)
add support for passing lists of verts/edges/faces to bmesh operators
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_operator_api.h')
-rw-r--r--source/blender/bmesh/intern/bmesh_operator_api.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/bmesh/intern/bmesh_operator_api.h b/source/blender/bmesh/intern/bmesh_operator_api.h
index c6dd33b7a4b..aa005d1769b 100644
--- a/source/blender/bmesh/intern/bmesh_operator_api.h
+++ b/source/blender/bmesh/intern/bmesh_operator_api.h
@@ -352,6 +352,8 @@ int BMO_vert_edge_flags_count(BMesh *bm, BMVert *v, const short oflag);
void BMO_slot_map_to_flag(BMesh *bm, BMOperator *op, const char *slot_name,
const char hflag, const short oflag);
+void *BMO_slot_buffer_alloc(BMOperator *op, const char *slot_name, const int len);
+
void BMO_slot_buffer_from_all(BMesh *bm, BMOperator *op, const char *slot_name,
const char htype);