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/blenkernel/intern/depsgraph.c
parent7cfb05dcb0790cc4aa209ecb63649aa756cb730f (diff)
OpenSubdiv: Make new geometry relations ensures dependent data exists on CPU
Diffstat (limited to 'source/blender/blenkernel/intern/depsgraph.c')
-rw-r--r--source/blender/blenkernel/intern/depsgraph.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/depsgraph.c b/source/blender/blenkernel/intern/depsgraph.c
index b7ad43869b7..62491f1ff6e 100644
--- a/source/blender/blenkernel/intern/depsgraph.c
+++ b/source/blender/blenkernel/intern/depsgraph.c
@@ -1141,7 +1141,14 @@ void dag_add_relation(DagForest *forest, DagNode *fob1, DagNode *fob2, short rel
/* TODO(sergey): Find a better place for this. */
#ifdef WITH_OPENSUBDIV
if ((rel & DAG_RL_DATA_DATA) != 0) {
- fob1->eval_flags |= DAG_EVAL_NEED_CPU;
+ if (fob1->type == ID_OB) {
+ if ((fob1->eval_flags & DAG_EVAL_NEED_CPU) == 0) {
+ Object *object = fob1->ob;
+ /* Make sure object has all the data on CPU. */
+ object->recalc |= OB_RECALC_DATA;
+ fob1->eval_flags |= DAG_EVAL_NEED_CPU;
+ }
+ }
}
#endif