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
path: root/source
diff options
context:
space:
mode:
authorLukas Tönne <lukas.toenne@gmail.com>2015-03-16 20:48:23 +0300
committerLukas Tönne <lukas.toenne@gmail.com>2015-03-26 16:13:38 +0300
commit124e00bf8ae4d31da645f816e2db6875c6d9b632 (patch)
treef30c60d4dc8fde7fb01125cda3629de680acf41d /source
parent03ffed6fb14dc93b042e120e0b22364bd8f68956 (diff)
Disable additional depsgraph tagging through cache libraries.
This code is outdated due to changes in reading code and obscures some genuine depsgraph behavior.
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/cache_library.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/cache_library.c b/source/blender/blenkernel/intern/cache_library.c
index 3ae8f8c7d86..6c535e748aa 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
}