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:
authorFabian Schempp <fabianschempp@googlemail.com>2021-07-08 13:08:29 +0300
committerFabian Schempp <fabianschempp@googlemail.com>2021-07-08 13:11:23 +0300
commitd2b9cc41e790b0003e7355f6535a05fa62f984a3 (patch)
treeb0aa599975e42c234b6d7dd560f70757bd3be8db /source/blender/bmesh/intern/bmesh_operator_api.h
parent1512c5c973f9836271e35629d7d000005499c06b (diff)
Added attribute delimiter for dissolve node
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 0f9488bd091..4a92c2221f6 100644
--- a/source/blender/bmesh/intern/bmesh_operator_api.h
+++ b/source/blender/bmesh/intern/bmesh_operator_api.h
@@ -428,6 +428,8 @@ typedef enum {
BMO_DELIM_SEAM = 1 << 2,
BMO_DELIM_SHARP = 1 << 3,
BMO_DELIM_UV = 1 << 4,
+ BMO_DELIM_EDGE_TAG = 1 << 5,
+ BMO_DELIM_FACE_TAG = 1 << 6,
} BMO_Delimit;
void BMO_op_flag_enable(BMesh *bm, BMOperator *op, const int op_flag);