Replace all old DAG calls with direct calls to new DEG and remove BKE_depsgraph.h

This removes BKE_depsgraph.h and depsgraph.c
This commit is contained in:
2017-06-08 10:14:53 +02:00
parent 7f480352ca
commit d675415eef
176 changed files with 1057 additions and 1204 deletions

View File

@@ -47,7 +47,7 @@ static void rna_Curve_transform(Curve *cu, float *mat, int shape_keys)
{
BKE_curve_transform(cu, (float (*)[4])mat, shape_keys);
DAG_id_tag_update(&cu->id, 0);
DEG_id_tag_update(&cu->id, 0);
}
#else