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:
authorSergey Sharybin <sergey.vfx@gmail.com>2011-02-20 18:35:01 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2011-02-20 18:35:01 +0300
commit8c4e95da48b3b896f012d7a1b7c89841270c40c6 (patch)
tree240b500ec32f4fd909a1a4ecbce1e3fad97e9eec /source/blender/blenlib/intern/pbvh.c
parentc37884b015a949bd03d1dac890263c93285291a1 (diff)
Fix for crash when sculpting on multires object during playback
- Restored BLI_pbvh_grids_update stuff; - Marc all nodes as changes in ED_sculpt_modifiers_changed, so draw_buffers would be keept correct.
Diffstat (limited to 'source/blender/blenlib/intern/pbvh.c')
-rw-r--r--source/blender/blenlib/intern/pbvh.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/pbvh.c b/source/blender/blenlib/intern/pbvh.c
index 3c7300f2588..880664fd55d 100644
--- a/source/blender/blenlib/intern/pbvh.c
+++ b/source/blender/blenlib/intern/pbvh.c
@@ -1475,6 +1475,13 @@ void BLI_pbvh_draw(PBVH *bvh, float (*planes)[4], float (*face_nors)[3], int smo
}
}
+void BLI_pbvh_grids_update(PBVH *bvh, DMGridData **grids, DMGridAdjacency *gridadj, void **gridfaces)
+{
+ bvh->grids= grids;
+ bvh->gridadj= gridadj;
+ bvh->gridfaces= gridfaces;
+}
+
float (*BLI_pbvh_get_vertCos(PBVH *pbvh))[3]
{
int a;