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>2011-12-29 02:46:10 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-12-29 02:46:10 +0400
commit1297f72f787dc71168a4766c1f7234626fbfe9db (patch)
treec80dd18875b39031ceadad97bd28760f9af9777d /source/blender/blenkernel/BKE_mesh.h
parentbecc094119d1aec9c94d55ca9589751c050d0dd0 (diff)
sync changes from bmesh r42951 + some other minor edits.
Diffstat (limited to 'source/blender/blenkernel/BKE_mesh.h')
-rw-r--r--source/blender/blenkernel/BKE_mesh.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/source/blender/blenkernel/BKE_mesh.h b/source/blender/blenkernel/BKE_mesh.h
index d7e2c73aa9d..1cae5ee2f31 100644
--- a/source/blender/blenkernel/BKE_mesh.h
+++ b/source/blender/blenkernel/BKE_mesh.h
@@ -37,11 +37,13 @@ struct BoundBox;
struct DispList;
struct ListBase;
struct EditMesh;
-struct MDeformVert;
struct Mesh;
+struct MPoly;
+struct MLoop;
struct MFace;
struct MEdge;
struct MVert;
+struct MDeformVert;
struct MCol;
struct Object;
struct MTFace;
@@ -49,6 +51,7 @@ struct VecNor;
struct CustomData;
struct DerivedMesh;
struct Scene;
+struct MLoopUV;
#ifdef __cplusplus
extern "C" {
@@ -166,8 +169,9 @@ void BKE_mesh_ensure_navmesh(struct Mesh *me);
/*convert a triangle of loop facedata to mface facedata*/
void mesh_loops_to_mface_corners(struct CustomData *fdata, struct CustomData *ldata,
- struct CustomData *pdata, int lindex[4], int findex,
- const int polyindex, const int mf_len);
+ struct CustomData *pdata, int lindex[4], int findex,
+ const int polyindex, const int mf_len,
+ const int numTex, const int numCol, const int hasWCol);
#ifdef __cplusplus
}