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:
authorCampbell Barton <ideasman42@gmail.com>2019-01-25 15:11:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-25 15:11:58 +0300
commit8e8fb1520c7345adf7cdd0a839aa76578c4f70e9 (patch)
tree8574f666fa0ef23ef2aafe334756bf70bcdd9b7e /source
parentea5326df86cba7bb235f623d59cec87bdf9e41b6 (diff)
Depsgraph: use specific tag to update shading
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/material.c2
-rw-r--r--source/blender/editors/sculpt_paint/paint_image_proj.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/material.c b/source/blender/blenkernel/intern/material.c
index e8239deddd7..a23b192af4d 100644
--- a/source/blender/blenkernel/intern/material.c
+++ b/source/blender/blenkernel/intern/material.c
@@ -1097,7 +1097,7 @@ void BKE_texpaint_slot_refresh_cache(Scene *scene, Material *ma)
if (!ma)
return;
- DEG_id_tag_update(&ma->id, 0);
+ DEG_id_tag_update(&ma->id, ID_RECALC_SHADING);
if (ma->texpaintslot) {
MEM_freeN(ma->texpaintslot);
diff --git a/source/blender/editors/sculpt_paint/paint_image_proj.c b/source/blender/editors/sculpt_paint/paint_image_proj.c
index 80133db906e..ef2999b368f 100644
--- a/source/blender/editors/sculpt_paint/paint_image_proj.c
+++ b/source/blender/editors/sculpt_paint/paint_image_proj.c
@@ -6027,7 +6027,7 @@ static bool proj_paint_add_slot(bContext *C, wmOperator *op)
BKE_texpaint_slot_refresh_cache(scene, ma);
BKE_image_signal(bmain, ima, NULL, IMA_SIGNAL_USER_NEW_IMAGE);
WM_event_add_notifier(C, NC_IMAGE | NA_ADDED, ima);
- DEG_id_tag_update(&ma->id, 0);
+ DEG_id_tag_update(&ma->id, ID_RECALC_SHADING);
ED_area_tag_redraw(CTX_wm_area(C));
BKE_paint_proj_mesh_data_check(scene, ob, NULL, NULL, NULL, NULL);