Skip to content

Commit

Permalink
Blender 2.76 A update. Fix wrong handling of vertex parent
Browse files Browse the repository at this point in the history
  • Loading branch information
ReinerBforartists committed Nov 13, 2015
1 parent 123f5aa commit 5132971
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/blender/blenkernel/intern/depsgraph.c
Expand Up @@ -1140,7 +1140,7 @@ 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) {
if ((rel & (DAG_RL_DATA_DATA | DAG_RL_DATA_OB)) != 0) {
if (fob1->type == ID_OB) {
if ((fob1->eval_flags & DAG_EVAL_NEED_CPU) == 0) {
Object *ob2 = fob2->ob;
Expand Down

0 comments on commit 5132971

Please sign in to comment.