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>2017-10-02 16:49:49 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-10-02 16:49:49 +0300
commit8b1b7e8d1020fa9e3e6d7361b36219a5596d4e42 (patch)
tree82212378943c26131b9373a78a1f8c78fcf9c5f2 /source/blender/depsgraph/intern/depsgraph_tag.cc
parentba67d9425865fc60836dc003e8bfaff651dc57d9 (diff)
Depsgraph: Fix/workarounf when tagging light probe for data update
Diffstat (limited to 'source/blender/depsgraph/intern/depsgraph_tag.cc')
-rw-r--r--source/blender/depsgraph/intern/depsgraph_tag.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph_tag.cc b/source/blender/depsgraph/intern/depsgraph_tag.cc
index 41724100b51..0df2420d662 100644
--- a/source/blender/depsgraph/intern/depsgraph_tag.cc
+++ b/source/blender/depsgraph/intern/depsgraph_tag.cc
@@ -179,6 +179,9 @@ void id_tag_update_object_data(Depsgraph *graph, IDDepsNode *id_node)
break;
case ID_PA:
return;
+ case ID_LP:
+ data_comp = id_node->find_component(DEG_NODE_TYPE_PARAMETERS);
+ break;
default:
break;
}