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>2018-11-27 03:39:51 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-11-27 03:40:32 +0300
commit9a5df92c1bdee547dd38a846c22d91c05d45ff02 (patch)
treebff3882835a3755060b32b5d1ddc7687c7d3d91f /source/blender/bmesh/intern/bmesh_construct.h
parentacd1d1a31d1ac7343f8656dbd3b04c5342f306be (diff)
Fix T56872: Edge slide gives invalid normals
Add the ability to skip overwriting normals.
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_construct.h')
-rw-r--r--source/blender/bmesh/intern/bmesh_construct.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/intern/bmesh_construct.h b/source/blender/bmesh/intern/bmesh_construct.h
index a52a17cd2f3..1a2b6e46c39 100644
--- a/source/blender/bmesh/intern/bmesh_construct.h
+++ b/source/blender/bmesh/intern/bmesh_construct.h
@@ -55,7 +55,7 @@ BMFace *BM_face_create_ngon_verts(
void BM_elem_attrs_copy_ex(
BMesh *bm_src, BMesh *bm_dst, const void *ele_src_v, void *ele_dst_v,
- const char hflag_mask);
+ const char hflag_mask, const uint64_t cd_mask);
void BM_elem_attrs_copy(BMesh *bm_src, BMesh *bm_dst, const void *ele_src_v, void *ele_dst_v);
void BM_elem_select_copy(BMesh *bm_dst, void *ele_dst_v, const void *ele_src_v);