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>2016-03-14 07:32:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-03-14 07:34:03 +0300
commita686aa347751fdd988500d175219aa190085cba9 (patch)
tree197a68e04d09667d0b7f3b971bf8cd80b7afc7d7 /source/blender/blenkernel/BKE_mesh.h
parentb9ae96dc121c43332ed30ed9521d5b40578ad2ea (diff)
Support mdisps for Mesh.flip_normals()
Diffstat (limited to 'source/blender/blenkernel/BKE_mesh.h')
-rw-r--r--source/blender/blenkernel/BKE_mesh.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_mesh.h b/source/blender/blenkernel/BKE_mesh.h
index 6fde16b47f5..a8f20a4ebc5 100644
--- a/source/blender/blenkernel/BKE_mesh.h
+++ b/source/blender/blenkernel/BKE_mesh.h
@@ -320,6 +320,9 @@ void BKE_mesh_convert_mfaces_to_mpolys_ex(
void BKE_mesh_mdisp_flip(struct MDisps *md, const bool use_loop_mdisp_flip);
+void BKE_mesh_polygon_flip_ex(
+ struct MPoly *mpoly, struct MLoop *mloop, struct CustomData *ldata,
+ struct MDisps *mdisp, const bool use_loop_mdisp_flip);
void BKE_mesh_polygon_flip(struct MPoly *mpoly, struct MLoop *mloop, struct CustomData *ldata);
void BKE_mesh_polygons_flip(struct MPoly *mpoly, struct MLoop *mloop, struct CustomData *ldata, int totpoly);