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 <campbell@blender.org>2022-03-07 13:35:21 +0300
committerCampbell Barton <campbell@blender.org>2022-03-07 13:35:21 +0300
commit57c5f2a50329d6591eea41ac65ec94890c3c33df (patch)
treee1025ed2ec5187d1100805815e8d6c2e3d8616b4 /source/blender/bmesh/intern/bmesh_mesh_convert.h
parent25fc5876d3bb37018adcfe1a1b943b90d45f5f9a (diff)
parent72e20785e1e2ed7b15a9765ebb6df646fd32dbff (diff)
Merge branch 'blender-v3.1-release'
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_mesh_convert.h')
-rw-r--r--source/blender/bmesh/intern/bmesh_mesh_convert.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/bmesh/intern/bmesh_mesh_convert.h b/source/blender/bmesh/intern/bmesh_mesh_convert.h
index 8e87fc86b6d..0bd70749cb1 100644
--- a/source/blender/bmesh/intern/bmesh_mesh_convert.h
+++ b/source/blender/bmesh/intern/bmesh_mesh_convert.h
@@ -53,6 +53,11 @@ struct BMeshToMeshParams {
* that have become invalid from updating the shape-key, see T71865.
*/
uint update_shapekey_indices : 1;
+ /**
+ * Instead of copying the basis shape-key into the #MVert array,
+ * copy the #BMVert.co directly to #MVert.co (used for reading undo data).
+ */
+ uint active_shapekey_to_mvert : 1;
struct CustomData_MeshMasks cd_mask_extra;
};
/**