Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_colortools.h
| Show First 20 Lines • Show All 55 Lines • ▼ Show 20 Lines | enum { | ||||
| CURVEMAP_SLOPE_POSITIVE = 1, | CURVEMAP_SLOPE_POSITIVE = 1, | ||||
| CURVEMAP_SLOPE_POS_NEG = 2, | CURVEMAP_SLOPE_POS_NEG = 2, | ||||
| }; | }; | ||||
| void curvemap_reset(struct CurveMap *cuma, const struct rctf *clipr, int preset, int slope); | void curvemap_reset(struct CurveMap *cuma, const struct rctf *clipr, int preset, int slope); | ||||
| void curvemap_remove(struct CurveMap *cuma, const short flag); | void curvemap_remove(struct CurveMap *cuma, const short flag); | ||||
| bool curvemap_remove_point(struct CurveMap *cuma, struct CurveMapPoint *cmp); | bool curvemap_remove_point(struct CurveMap *cuma, struct CurveMapPoint *cmp); | ||||
| struct CurveMapPoint *curvemap_insert(struct CurveMap *cuma, float x, float y); | struct CurveMapPoint *curvemap_insert(struct CurveMap *cuma, float x, float y); | ||||
| void curvemap_sethandle(struct CurveMap *cuma, int type); | void curvemap_handle_set(struct CurveMap *cuma, int type); | ||||
| void curvemapping_changed(struct CurveMapping *cumap, const bool rem_doubles); | void curvemapping_changed(struct CurveMapping *cumap, const bool rem_doubles); | ||||
| void curvemapping_changed_all(struct CurveMapping *cumap); | void curvemapping_changed_all(struct CurveMapping *cumap); | ||||
| /* call before _all_ evaluation functions */ | /* call before _all_ evaluation functions */ | ||||
| void curvemapping_initialize(struct CurveMapping *cumap); | void curvemapping_initialize(struct CurveMapping *cumap); | ||||
| /* keep these (const CurveMap) - to help with thread safety */ | /* keep these (const CurveMap) - to help with thread safety */ | ||||
| Show All 40 Lines | |||||