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>2019-09-20 05:05:29 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-09-20 05:09:22 +0300
commitfd51d5d4129699e505a426db04fca73c1c5bf8f9 (patch)
tree06b76d7673ca2e2ce1ec04013681430eb5110c6c /source/blender/blenkernel/BKE_object_facemap.h
parent6dc7cefb785ead19ec7c54c01806c05032d29d77 (diff)
Mesh: support face-maps when joining
Resolves T64320
Diffstat (limited to 'source/blender/blenkernel/BKE_object_facemap.h')
-rw-r--r--source/blender/blenkernel/BKE_object_facemap.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_object_facemap.h b/source/blender/blenkernel/BKE_object_facemap.h
index ef0cbaa2ae6..83780d8fad5 100644
--- a/source/blender/blenkernel/BKE_object_facemap.h
+++ b/source/blender/blenkernel/BKE_object_facemap.h
@@ -40,6 +40,11 @@ void BKE_object_facemap_unique_name(struct Object *ob, struct bFaceMap *fmap);
struct bFaceMap *BKE_object_facemap_find_name(struct Object *ob, const char *name);
void BKE_object_facemap_copy_list(struct ListBase *outbase, const struct ListBase *inbase);
+int *BKE_object_facemap_index_map_create(struct Object *ob_src,
+ struct Object *ob_dst,
+ int *r_map_len);
+void BKE_object_facemap_index_map_apply(int *fmap, int fmap_len, const int *map, int map_len);
+
#ifdef __cplusplus
}
#endif