Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_image.h
| Show First 20 Lines • Show All 244 Lines • ▼ Show 20 Lines | |||||
| void BKE_image_memorypack(struct Image *ima); | void BKE_image_memorypack(struct Image *ima); | ||||
| void BKE_image_packfiles(struct ReportList *reports, struct Image *ima, const char *basepath); | void BKE_image_packfiles(struct ReportList *reports, struct Image *ima, const char *basepath); | ||||
| void BKE_image_packfiles_from_mem(struct ReportList *reports, struct Image *ima, char *data, const size_t data_len); | void BKE_image_packfiles_from_mem(struct ReportList *reports, struct Image *ima, char *data, const size_t data_len); | ||||
| /* prints memory statistics for images */ | /* prints memory statistics for images */ | ||||
| void BKE_image_print_memlist(void); | void BKE_image_print_memlist(void); | ||||
| /* empty image block, of similar type and filename */ | /* empty image block, of similar type and filename */ | ||||
| void BKE_image_copy_data(struct Main *bmain, struct Image *ima_dst, const struct Image *ima_src, const int flag); | |||||
| struct Image *BKE_image_copy(struct Main *bmain, const struct Image *ima); | struct Image *BKE_image_copy(struct Main *bmain, const struct Image *ima); | ||||
| /* merge source into dest, and free source */ | /* merge source into dest, and free source */ | ||||
| void BKE_image_merge(struct Image *dest, struct Image *source); | void BKE_image_merge(struct Image *dest, struct Image *source); | ||||
| /* scale the image */ | /* scale the image */ | ||||
| bool BKE_image_scale(struct Image *image, int width, int height); | bool BKE_image_scale(struct Image *image, int width, int height); | ||||
| Show All 35 Lines | |||||