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
path: root/source
diff options
context:
space:
mode:
authorJoseph Eagar <joeedh@gmail.com>2022-09-12 21:09:03 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2022-09-21 13:40:57 +0300
commit2a43bb5ed773ecf4c62b32bf816ec65543f05866 (patch)
tree36fdd053058a5b41a63e3da8a7cdcbae3d978069 /source
parent440c29f65b7f85190376811a5c10258e35cf2d60 (diff)
Sculpt: Fix T100941: Draw cache invalidation loop
PBVH draw was invalidating the draw cache even when disabled (e.g. if modifiers exist).
Diffstat (limited to 'source')
-rw-r--r--source/blender/draw/intern/draw_cache_impl_mesh.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/draw/intern/draw_cache_impl_mesh.cc b/source/blender/draw/intern/draw_cache_impl_mesh.cc
index 5b7b3fd9a4a..57d1456b738 100644
--- a/source/blender/draw/intern/draw_cache_impl_mesh.cc
+++ b/source/blender/draw/intern/draw_cache_impl_mesh.cc
@@ -555,8 +555,7 @@ static bool mesh_batch_cache_valid(Object *object, Mesh *me)
}
if (object->sculpt && object->sculpt->pbvh) {
- if (cache->pbvh_is_drawing != BKE_pbvh_is_drawing(object->sculpt->pbvh) ||
- BKE_pbvh_draw_cache_invalid(object->sculpt->pbvh)) {
+ if (cache->pbvh_is_drawing != BKE_pbvh_is_drawing(object->sculpt->pbvh)) {
return false;
}