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:
authorJoshua Leung <aligorith@gmail.com>2008-01-27 06:21:24 +0300
committerJoshua Leung <aligorith@gmail.com>2008-01-27 06:21:24 +0300
commit8c59520060009d08d50b79e2a37734e77fd6aebe (patch)
treee4989001053626ef8d267c0cc063b112b4147a78 /source/blender/src/transform_conversions.c
parent4213dac345f053cb5674143d719276e742bc69da (diff)
== Action Editor Drawing - Optimisations (Part 2 out of ?) ==
Keyframes are now checked for whether they are visible or not before they are prepared for drawing. This should provide some improvements for large data-sets... In general there don't appear to be any major issues, although in a few situations, long-keyframes may end up appearing/disappearing.
Diffstat (limited to 'source/blender/src/transform_conversions.c')
-rw-r--r--source/blender/src/transform_conversions.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/transform_conversions.c b/source/blender/src/transform_conversions.c
index 12419c94c0f..5d3ab77ab45 100644
--- a/source/blender/src/transform_conversions.c
+++ b/source/blender/src/transform_conversions.c
@@ -3002,9 +3002,9 @@ short autokeyframe_cfra_can_key(Object *ob)
/* get keyframes that object has (bone anim is stored on ob too) */
if (ob->action)
- action_to_keylist(ob->action, &keys, NULL);
+ action_to_keylist(ob->action, &keys, NULL, NULL);
else if (ob->ipo)
- ipo_to_keylist(ob->ipo, &keys, NULL);
+ ipo_to_keylist(ob->ipo, &keys, NULL, NULL);
else
return 0;