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>2021-06-18 08:08:23 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-06-18 08:08:23 +0300
commit2e8d7fa7ee442fffafdd13a9a9c096fcc1d5baad (patch)
tree4cd9611e9326dae3b80c7643e7dd37698e258d1e /source/blender/blenkernel/BKE_mesh.h
parent253c5d25f79f08e8801778bc7d36403c9419901d (diff)
Cleanup: remove unused MFace custom-data utilities
Remove: - BKE_mesh_loops_to_mface_corners - BKE_mesh_tangent_loops_to_tessdata
Diffstat (limited to 'source/blender/blenkernel/BKE_mesh.h')
-rw-r--r--source/blender/blenkernel/BKE_mesh.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/source/blender/blenkernel/BKE_mesh.h b/source/blender/blenkernel/BKE_mesh.h
index 2a1fbc8273b..1b550bae2a2 100644
--- a/source/blender/blenkernel/BKE_mesh.h
+++ b/source/blender/blenkernel/BKE_mesh.h
@@ -534,25 +534,6 @@ void BKE_mesh_calc_volume(const struct MVert *mverts,
float r_center[3]);
/* tessface */
-void BKE_mesh_loops_to_mface_corners(struct CustomData *fdata,
- struct CustomData *ldata,
- struct CustomData *pdata,
- unsigned int lindex[4],
- int findex,
- const int polyindex,
- const int mf_len,
- const int numUV,
- const int numCol,
- const bool hasPCol,
- const bool hasOrigSpace,
- const bool hasLNor);
-void BKE_mesh_tangent_loops_to_tessdata(struct CustomData *fdata,
- struct CustomData *ldata,
- struct MFace *mface,
- const int *polyindices,
- unsigned int (*loopindices)[4],
- const int num_faces,
- const char *layer_name);
void BKE_mesh_convert_mfaces_to_mpolys(struct Mesh *mesh);
void BKE_mesh_do_versions_convert_mfaces_to_mpolys(struct Mesh *mesh);
void BKE_mesh_convert_mfaces_to_mpolys_ex(struct ID *id,