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>2020-08-25 16:56:34 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-08-25 16:56:34 +0300
commitc336947dbb53dbc35306f6cada391bfc3d7bd0e8 (patch)
treed84185367305c786bea05971b3fbc11abbc3aab4 /source/blender/draw/intern/draw_cache_impl_mesh.c
parent9dd4d87f186545cad24fc95e182ab58d1bc87ea1 (diff)
parent33ac3582bbd5551bdfbc7ef8856640b5e61888f8 (diff)
Merge branch 'blender-v2.90-release' into master
Diffstat (limited to 'source/blender/draw/intern/draw_cache_impl_mesh.c')
-rw-r--r--source/blender/draw/intern/draw_cache_impl_mesh.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/source/blender/draw/intern/draw_cache_impl_mesh.c b/source/blender/draw/intern/draw_cache_impl_mesh.c
index 4acae2fc816..e8a712b6881 100644
--- a/source/blender/draw/intern/draw_cache_impl_mesh.c
+++ b/source/blender/draw/intern/draw_cache_impl_mesh.c
@@ -1186,7 +1186,15 @@ void DRW_mesh_batch_cache_create_requested(struct TaskGraph *task_graph,
BLI_assert(me->edit_mesh->mesh_eval_final != NULL);
}
- const bool is_editmode = (me->edit_mesh != NULL) && DRW_object_is_in_edit_mode(ob);
+ /* Don't check `DRW_object_is_in_edit_mode(ob)` here because it means the same mesh
+ * may draw with edit-mesh data and regular mesh data.
+ * In this case the custom-data layers used wont always match in `me->runtime.batch_cache`.
+ * If we want to display regular mesh data, we should have a separate cache for the edit-mesh.
+ * See T77359. */
+ const bool is_editmode = (me->edit_mesh != NULL) /* && DRW_object_is_in_edit_mode(ob) */;
+
+ /* This could be set for paint mode too, currently it's only used for edit-mode. */
+ const bool is_mode_active = is_editmode && DRW_object_is_in_edit_mode(ob);
DRWBatchFlag batch_requested = cache->batch_requested;
cache->batch_requested = 0;
@@ -1507,6 +1515,7 @@ void DRW_mesh_batch_cache_create_requested(struct TaskGraph *task_graph,
me,
is_editmode,
is_paint_mode,
+ is_mode_active,
ob->obmat,
false,
true,
@@ -1524,6 +1533,7 @@ void DRW_mesh_batch_cache_create_requested(struct TaskGraph *task_graph,
me,
is_editmode,
is_paint_mode,
+ is_mode_active,
ob->obmat,
false,
false,
@@ -1540,6 +1550,7 @@ void DRW_mesh_batch_cache_create_requested(struct TaskGraph *task_graph,
me,
is_editmode,
is_paint_mode,
+ is_mode_active,
ob->obmat,
true,
false,