[Bf-blender-cvs] [44b94b7] depsgraph_refactor: Depsgraph: Code cleanup, fix typos

Sergey Sharybin noreply at git.blender.org
Fri Nov 28 11:43:10 CET 2014


Commit: 44b94b7c49895446e38dd61a5c7c2eaf2d133855
Author: Sergey Sharybin
Date:   Fri Nov 28 15:40:04 2014 +0500
Branches: depsgraph_refactor
https://developer.blender.org/rB44b94b7c49895446e38dd61a5c7c2eaf2d133855

Depsgraph: Code cleanup, fix typos

===================================================================

M	source/blender/depsgraph/intern/depsgraph_type_defines.cpp

===================================================================

diff --git a/source/blender/depsgraph/intern/depsgraph_type_defines.cpp b/source/blender/depsgraph/intern/depsgraph_type_defines.cpp
index 5058502..978c490 100644
--- a/source/blender/depsgraph/intern/depsgraph_type_defines.cpp
+++ b/source/blender/depsgraph/intern/depsgraph_type_defines.cpp
@@ -145,7 +145,7 @@ void BKE_pose_eval_bone(EvaluationContext *eval_ctx,
                         Object *ob,
                         bPoseChannel *pchan) {
 	bArmature *arm = (bArmature *)ob->data;
-	printf("%s on %s phan %s\n", __func__, ob->id.name, pchan->name);
+	printf("%s on %s pchan %s\n", __func__, ob->id.name, pchan->name);
 	BLI_assert(ob->type == OB_ARMATURE);
 	if (arm->edbo || (arm->flag & ARM_RESTPOS)) {
 		Bone *bone = pchan->bone;
@@ -176,7 +176,7 @@ void BKE_pose_constraints_evaluate(EvaluationContext *eval_ctx,
                                    Object *ob,
                                    bPoseChannel *pchan)
 {
-	printf("%s on %s phan %s\n", __func__, ob->id.name, pchan->name);
+	printf("%s on %s pchan %s\n", __func__, ob->id.name, pchan->name);
 	Scene *scene = (Scene*)G.main->scene.first;
 	float ctime = BKE_scene_frame_get(scene); /* not accurate... */
 
@@ -193,7 +193,7 @@ void BKE_pose_iktree_evaluate(EvaluationContext *eval_ctx,
                               Object *ob,
                               bPoseChannel *rootchan)
 {
-	printf("%s on %s phan %s\n", __func__, ob->id.name, rootchan->name);
+	printf("%s on %s pchan %s\n", __func__, ob->id.name, rootchan->name);
 	float ctime = BKE_scene_frame_get(scene); /* not accurate... */
 	BIK_execute_tree(scene, ob, rootchan, ctime);
 }
@@ -203,7 +203,7 @@ void BKE_pose_splineik_evaluate(EvaluationContext *eval_ctx,
                                 Object *ob,
                                 bPoseChannel *rootchan)
 {
-	printf("%s on %s phan %s\n", __func__, ob->id.name, rootchan->name);
+	printf("%s on %s pchan %s\n", __func__, ob->id.name, rootchan->name);
 	float ctime = BKE_scene_frame_get(scene); /* not accurate... */
 	BKE_splineik_execute_tree(scene, ob, rootchan, ctime);
 }




More information about the Bf-blender-cvs mailing list