[Bf-blender-cvs] [1f479166645] master: Depsgraph: Fix changes in tracking invalidating movie cache

Sergey Sharybin noreply at git.blender.org
Sun Jul 28 15:09:18 CEST 2019


Commit: 1f479166645d43a837af32652c85b0e76cd7d9d6
Author: Sergey Sharybin
Date:   Sun Jul 28 15:08:41 2019 +0200
Branches: master
https://developer.blender.org/rB1f479166645d43a837af32652c85b0e76cd7d9d6

Depsgraph: Fix changes in tracking invalidating movie cache

Added special exception in legacy tag with 0 flag.

===================================================================

M	source/blender/depsgraph/intern/depsgraph_tag.cc

===================================================================

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)



More information about the Bf-blender-cvs mailing list