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>2019-07-28 16:08:41 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-07-28 16:08:41 +0300
commit1f479166645d43a837af32652c85b0e76cd7d9d6 (patch)
tree90d405e17257108d3bea1b2426ed4c74f16dd85d /source/blender/depsgraph/intern/depsgraph_tag.cc
parent11814080a61b6b1a0a8926dee5f3bd2388831694 (diff)
Depsgraph: Fix changes in tracking invalidating movie cache
Added special exception in legacy tag with 0 flag.
Diffstat (limited to 'source/blender/depsgraph/intern/depsgraph_tag.cc')
-rw-r--r--source/blender/depsgraph/intern/depsgraph_tag.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph_tag.cc b/source/blender/depsgraph/intern/depsgraph_tag.cc
index f367f080da2..fc8a829b56b 100644
--- a/source/blender/depsgraph/intern/depsgraph_tag.cc
+++ b/source/blender/depsgraph/intern/depsgraph_tag.cc
@@ -452,7 +452,7 @@ const char *update_source_as_string(eUpdateSource source)
int deg_recalc_flags_for_legacy_zero()
{
- return ID_RECALC_ALL & ~(ID_RECALC_PSYS_ALL | ID_RECALC_ANIMATION);
+ return ID_RECALC_ALL & ~(ID_RECALC_PSYS_ALL | ID_RECALC_ANIMATION | ID_RECALC_SOURCE);
}
int deg_recalc_flags_effective(Depsgraph *graph, int flags)