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:
authorTon Roosendaal <ton@blender.org>2004-11-11 18:31:44 +0300
committerTon Roosendaal <ton@blender.org>2004-11-11 18:31:44 +0300
commitd673c4a862ae8c8eaf26b3a939e0da7f335ffbf4 (patch)
treeebb10e9de1bd590d0354d69e8ae5baafc967ec9b /source/blender/blenkernel/BKE_action.h
parentc8c149281cb595d435fb81a040a94c68a10fe377 (diff)
1) Bug fix 1776
Lattices seem to have deform lag, when they're animated with Ipos. Found out this behaviour is already from before 2.25... solved with removing a where_is_object() from deform code, but dont fully grasp why. Tested with good demo file, with motion blur too. 2) No functional changes, just made 2 files compile without warnings; - added extra ifdefs __NLA_BLENDCON for unused calls - removed zealot 'const' from function protos and variables, these cannot work there, and hence gave warnings - added void pointer casts for array conversions in matrix code
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 7407da43543..5b4a0fa6c8e 100644
--- a/source/blender/blenkernel/BKE_action.h
+++ b/source/blender/blenkernel/BKE_action.h
@@ -75,7 +75,7 @@ struct bPoseChannel *set_pose_channel(struct bPose *pose,
* Allocate a new pose on the heap, and copy the src pose and it's channels
* into the new pose. *dst is set to the newly allocated structure.
*/
-void copy_pose(struct bPose **dst, const struct bPose *src,
+void copy_pose(struct bPose **dst, struct bPose *src,
int copyconstraints);
/**
@@ -108,7 +108,7 @@ struct bPoseChannel *verify_pose_channel(struct bPose* pose,
* the contents of src into it. If src is NULL NULL is returned.
*/
-struct bAction *copy_action(const struct bAction *src);
+struct bAction *copy_action(struct bAction *src);
/**
* Some kind of bounding box operation on the action.