Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_image.h
| Show First 20 Lines • Show All 337 Lines • ▼ Show 20 Lines | |||||
| /* Cycles hookup */ | /* Cycles hookup */ | ||||
| unsigned char *BKE_image_get_pixels_for_frame(struct Image *image, int frame); | unsigned char *BKE_image_get_pixels_for_frame(struct Image *image, int frame); | ||||
| float *BKE_image_get_float_pixels_for_frame(struct Image *image, int frame); | float *BKE_image_get_float_pixels_for_frame(struct Image *image, int frame); | ||||
| /* Image modifications */ | /* Image modifications */ | ||||
| bool BKE_image_is_dirty(struct Image *image); | bool BKE_image_is_dirty(struct Image *image); | ||||
| void BKE_image_mark_dirty(struct Image *image, struct ImBuf *ibuf); | void BKE_image_mark_dirty(struct Image *image, struct ImBuf *ibuf); | ||||
| void BKE_image_packed_update(struct Image *ima); | |||||
| /* Guess offset for the first frame in the sequence */ | /* Guess offset for the first frame in the sequence */ | ||||
| int BKE_image_sequence_guess_offset(struct Image *image); | int BKE_image_sequence_guess_offset(struct Image *image); | ||||
| bool BKE_image_has_anim(struct Image *image); | bool BKE_image_has_anim(struct Image *image); | ||||
| bool BKE_image_has_packedfile(struct Image *image); | bool BKE_image_has_packedfile(struct Image *image); | ||||
| bool BKE_image_is_animated(struct Image *image); | bool BKE_image_is_animated(struct Image *image); | ||||
| void BKE_image_file_format_set(struct Image *image, | void BKE_image_file_format_set(struct Image *image, | ||||
| int ftype, | int ftype, | ||||
| Show All 15 Lines | |||||