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-05-08 18:17:40 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-05-08 18:17:40 +0300
commit00127d03f1931459a77674a1372fdfeec1958a48 (patch)
tree7a1a35b188277be336a63a3261118d5e3e891aed /source/blender/blenkernel/intern/mesh.c
parent7522af49a34b7ec0f23a494242661eb953d285c4 (diff)
Cleanup: use bool for BKE_mesh_new_from_object
Diffstat (limited to 'source/blender/blenkernel/intern/mesh.c')
-rw-r--r--source/blender/blenkernel/intern/mesh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/mesh.c b/source/blender/blenkernel/intern/mesh.c
index 60216447a1f..f24e0ae97fa 100644
--- a/source/blender/blenkernel/intern/mesh.c
+++ b/source/blender/blenkernel/intern/mesh.c
@@ -2615,7 +2615,7 @@ void BKE_mesh_split_faces(Mesh *mesh, bool free_loop_normals)
/* settings: 1 - preview, 2 - render */
Mesh *BKE_mesh_new_from_object(
Depsgraph *depsgraph, Main *bmain, Scene *sce, Object *ob,
- int apply_modifiers, int calc_tessface, int calc_undeformed)
+ const bool apply_modifiers, const bool calc_tessface, const bool calc_undeformed)
{
Mesh *tmpmesh;
Curve *tmpcu = NULL, *copycu;