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>2012-02-05 10:20:51 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-05 10:20:51 +0400
commit776ec0ec61cee0be4eb60511900f7fe8f01dbae5 (patch)
tree52a690b779119bb4d96f16e51aa68ec3038a78f5 /source/blender/blenkernel/BKE_paint.h
parent2277241ea66ed7672cb81616b1ef3369586aa18c (diff)
add function for getting a polygon map: dm->getPolyMap(ob, dm).
polygon version of dm->getFaceMap(ob, dm) sculpt uses this for checking connectivity.
Diffstat (limited to 'source/blender/blenkernel/BKE_paint.h')
-rw-r--r--source/blender/blenkernel/BKE_paint.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_paint.h b/source/blender/blenkernel/BKE_paint.h
index 93b33ccd630..b1ac0a5b7d4 100644
--- a/source/blender/blenkernel/BKE_paint.h
+++ b/source/blender/blenkernel/BKE_paint.h
@@ -74,7 +74,7 @@ typedef struct SculptSession {
struct KeyBlock *kb;
/* Mesh connectivity */
- struct ListBase *fmap;
+ struct ListBase *pmap;
/* PBVH acceleration structure */
struct PBVH *pbvh;