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:
Diffstat (limited to 'source/blender/blenkernel/BKE_paint.h')
-rw-r--r--source/blender/blenkernel/BKE_paint.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/blender/blenkernel/BKE_paint.h b/source/blender/blenkernel/BKE_paint.h
index c048dad82eb..045e11c18b8 100644
--- a/source/blender/blenkernel/BKE_paint.h
+++ b/source/blender/blenkernel/BKE_paint.h
@@ -67,13 +67,14 @@ typedef struct SculptSession {
/* Mesh data (not copied) can come either directly from a Mesh, or from a MultiresDM */
struct MultiresModifierData *multires; /* Special handling for multires meshes */
struct MVert *mvert;
- struct MFace *mface;
- int totvert, totface;
+ struct MPoly *mpoly;
+ struct MLoop *mloop;
+ int totvert, totpoly;
float *face_normals;
struct KeyBlock *kb;
/* Mesh connectivity */
- struct ListBase *fmap;
+ struct ListBase *pmap;
/* PBVH acceleration structure */
struct PBVH *pbvh;