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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2020-01-28 19:48:30 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2020-01-28 19:48:30 +0300
commit5d36a2e587590515fb38b4dee71f49b47a339178 (patch)
tree85ca531c2c00ca1b7d12dbfafb0b31656bd64e5a /source/blender/depsgraph
parent3fd4c88e3a2e9d99d45a0856fcc339e013c0a79a (diff)
Fix T72143: editing image frame start/offset does not update in Eevee
Diffstat (limited to 'source/blender/depsgraph')
-rw-r--r--source/blender/depsgraph/intern/builder/deg_builder_relations.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/depsgraph/intern/builder/deg_builder_relations.cc b/source/blender/depsgraph/intern/builder/deg_builder_relations.cc
index 712d9d23128..a980042a974 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_relations.cc
+++ b/source/blender/depsgraph/intern/builder/deg_builder_relations.cc
@@ -1382,6 +1382,8 @@ void DepsgraphRelationBuilder::build_animation_images(ID *id)
/* TODO: can we check for existence of node for performance? */
if (BKE_image_user_id_has_animation(id)) {
OperationKey image_animation_key(id, NodeType::ANIMATION, OperationCode::IMAGE_ANIMATION);
+ ComponentKey cow_key(id, NodeType::COPY_ON_WRITE);
+ add_relation(cow_key, image_animation_key, "CoW -> Image Animation");
TimeSourceKey time_src_key;
add_relation(time_src_key, image_animation_key, "TimeSrc -> Image Animation");
}