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:
authorDalai Felinto <dfelinto@gmail.com>2018-10-13 01:14:49 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-10-13 01:34:21 +0300
commite02f6ed13d463dfa7ae86897a3f31b483653bb59 (patch)
treee03af136f296e3e84d2b14c2fc2ccb8ed1f4fd62 /source/blender/editors/armature/pose_edit.c
parent478446e3a45c5eff7aed238b92e5d3d7cf671c7a (diff)
Pose path: skip time printing when not DEBUG_TIME
Diffstat (limited to 'source/blender/editors/armature/pose_edit.c')
-rw-r--r--source/blender/editors/armature/pose_edit.c24
1 files changed, 21 insertions, 3 deletions
diff --git a/source/blender/editors/armature/pose_edit.c b/source/blender/editors/armature/pose_edit.c
index 46e417f6452..f23f8b4c7c4 100644
--- a/source/blender/editors/armature/pose_edit.c
+++ b/source/blender/editors/armature/pose_edit.c
@@ -207,22 +207,34 @@ void ED_pose_recalculate_paths(bContext *C, Scene *scene, Object *ob, bool curre
/* Override depsgraph with a filtered, simpler copy */
if (!current_frame_only && G.debug_value != -1) {
- TIMEIT_START(filter_pose_depsgraph);
DEG_FilterQuery query = {{0}};
DEG_FilterTarget *dft_ob = MEM_callocN(sizeof(DEG_FilterTarget), "DEG_FilterTarget");
dft_ob->id = &ob->id;
BLI_addtail(&query.targets, dft_ob);
+#ifdef DEBUG_TIME
+ TIMEIT_START(filter_pose_depsgraph);
+#endif
+
depsgraph = DEG_graph_filter(depsgraph, bmain, &query);
- free_depsgraph = true;
- MEM_freeN(dft_ob);
+#ifdef DEBUG_TIME
TIMEIT_END(filter_pose_depsgraph);
+#endif
+
+ free_depsgraph = true;
+ MEM_freeN(dft_ob);
+#ifdef DEBUG_TIME
TIMEIT_START(filter_pose_update);
+#endif
+
BKE_scene_graph_update_tagged(depsgraph, bmain);
+
+#ifdef DEBUG_TIME
TIMEIT_END(filter_pose_update);
+#endif
}
/* set flag to force recalc, then grab the relevant bones to target */
@@ -230,9 +242,15 @@ void ED_pose_recalculate_paths(bContext *C, Scene *scene, Object *ob, bool curre
animviz_get_object_motionpaths(ob, &targets);
/* recalculate paths, then free */
+#ifdef DEBUG_TIME
TIMEIT_START(pose_path_calc);
+#endif
+
animviz_calc_motionpaths(depsgraph, bmain, scene, &targets, !free_depsgraph, current_frame_only);
+
+#ifdef DEBUG_TIME
TIMEIT_END(pose_path_calc);
+#endif
BLI_freelistN(&targets);