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:
authorChris Want <cwant@ualberta.ca>2004-01-03 02:29:34 +0300
committerChris Want <cwant@ualberta.ca>2004-01-03 02:29:34 +0300
commita5a01ed549b837596790a917d11983e93f381c1b (patch)
tree968eac00a3e5268faaa770c4613604883cface6a /source/blender/blenkernel/BKE_action.h
parent251c11cca15cc1ae2736546167edd47bd30a2485 (diff)
Armature speed ups, Part I
-------------------------- Major speed up for armatures during times when you aren't posing a figure. Background: the calculation of poses generated by actions and the calculation of displists were getting somewhat out of sync. This was being remedied by 'clearing the constraint done flag' of the pose channels and recalculating the displists every time the 3d view was redrawn, making life slow and unpleasant. Commenting out the code that was doing this, then reinserting the 'clearing the constraint done flag' at the right times made things a bit more perky.
Diffstat (limited to 'source/blender/blenkernel/BKE_action.h')
-rw-r--r--source/blender/blenkernel/BKE_action.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/BKE_action.h b/source/blender/blenkernel/BKE_action.h
index 0a187450c79..6942a426d8f 100644
--- a/source/blender/blenkernel/BKE_action.h
+++ b/source/blender/blenkernel/BKE_action.h
@@ -170,8 +170,8 @@ enum {
POSE_UNUSED5 = 0x00000080,
POSE_OBMAT = 0x00000100,
POSE_PARMAT = 0x00000200,
- PCHAN_DONE = 0x00000400
-
+ PCHAN_DONE = 0x00000400,
+ PCHAN_TRANS_UPDATE = 0x00000800
};
#endif