~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/blender/blenkernel/BKE_fcurve.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2014-02-19 11:24:23 UTC
  • mfrom: (14.2.23 sid)
  • Revision ID: package-import@ubuntu.com-20140219112423-rkmaz2m7ha06d4tk
Tags: 2.69-3ubuntu1
* Merge with Debian; remaining changes:
  - Configure without OpenImageIO on armhf, as it is not available on
    Ubuntu.

Show diffs side-by-side

added added

removed removed

Lines of Context:
229
229
short fcurve_are_keyframes_usable(struct FCurve *fcu);
230
230
 
231
231
/* Can keyframes be added to F-Curve? */
232
 
short fcurve_is_keyframable(struct FCurve *fcu);
 
232
bool fcurve_is_keyframable(struct FCurve *fcu);
 
233
bool BKE_fcurve_is_protected(struct FCurve *fcu);
233
234
 
234
235
/* -------- Curve Sanity --------  */
235
236
 
236
237
void calchandles_fcurve(struct FCurve *fcu);
237
 
void testhandles_fcurve(struct FCurve *fcu, const short use_handle);
 
238
void testhandles_fcurve(struct FCurve *fcu, const bool use_handle);
238
239
void sort_time_fcurve(struct FCurve *fcu);
239
240
short test_time_fcurve(struct FCurve *fcu);
240
241