[Bf-blender-cvs] [9772bae] alembic_pointcache: Disable additional depsgraph tagging through cache libraries.

Lukas Tönne noreply at git.blender.org
Tue Mar 17 09:37:36 CET 2015


Commit: 9772bae88e7cc3936b0a44d5a13c70bc397378ec
Author: Lukas Tönne
Date:   Mon Mar 16 18:48:23 2015 +0100
Branches: alembic_pointcache
https://developer.blender.org/rB9772bae88e7cc3936b0a44d5a13c70bc397378ec

Disable additional depsgraph tagging through cache libraries.

This code is outdated due to changes in reading code and obscures some
genuine depsgraph behavior.

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

M	source/blender/blenkernel/intern/cache_library.c

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

diff --git a/source/blender/blenkernel/intern/cache_library.c b/source/blender/blenkernel/intern/cache_library.c
index 3ae8f8c..6c535e7 100644
--- a/source/blender/blenkernel/intern/cache_library.c
+++ b/source/blender/blenkernel/intern/cache_library.c
@@ -1252,6 +1252,7 @@ bool BKE_cache_read_dupligroup(Main *bmain, Scene *scene, float frame, eCacheLib
 
 void BKE_cache_library_dag_recalc_tag(EvaluationContext *eval_ctx, Main *bmain)
 {
+#if 0
 	eCacheLibrary_EvalMode eval_mode = (eval_ctx->mode == DAG_EVAL_RENDER) ? CACHE_LIBRARY_EVAL_RENDER : CACHE_LIBRARY_EVAL_VIEWPORT;
 	CacheLibrary *cachelib;
 	
@@ -1279,4 +1280,5 @@ void BKE_cache_library_dag_recalc_tag(EvaluationContext *eval_ctx, Main *bmain)
 			}
 		}
 	}
+#endif
 }




More information about the Bf-blender-cvs mailing list