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>2015-08-03 17:04:33 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-08-03 17:04:33 +0300
commit4a0f3bece31be4997dd19c8ee8faa5ae6a1914e3 (patch)
tree01c7c840a338a760babd76a5ffce02a274a5ae0d /source/blender/depsgraph
parent7cfb05dcb0790cc4aa209ecb63649aa756cb730f (diff)
OpenSubdiv: Make new geometry relations ensures dependent data exists on CPU
Diffstat (limited to 'source/blender/depsgraph')
-rw-r--r--source/blender/depsgraph/intern/depsgraph.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph.cc b/source/blender/depsgraph/intern/depsgraph.cc
index 94c01f362be..12b3a36b33e 100644
--- a/source/blender/depsgraph/intern/depsgraph.cc
+++ b/source/blender/depsgraph/intern/depsgraph.cc
@@ -357,7 +357,10 @@ DepsRelation *Depsgraph::add_new_relation(OperationDepsNode *from,
#ifdef WITH_OPENSUBDIV
if (type == DEPSREL_TYPE_GEOMETRY_EVAL) {
IDDepsNode *id_to = to->owner->owner;
- id_to->eval_flags |= DAG_EVAL_NEED_CPU;
+ if ((id_to->eval_flags & DAG_EVAL_NEED_CPU) == 0) {
+ id_to->tag_update(this);
+ id_to->eval_flags |= DAG_EVAL_NEED_CPU;
+ }
}
#endif
return rel;