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:
authorBastien Montagne <b.mont29@gmail.com>2020-03-06 19:11:55 +0300
committerBastien Montagne <b.mont29@gmail.com>2020-03-06 19:13:27 +0300
commitb825a95ec311a169d33fe21e28418f11a516c82f (patch)
treee6eef5637a4f2771832c857c8911704da723d013 /source/blender/blenkernel/BKE_image.h
parentf4936de9186be818e758408f70fb8e9d8c7cdade (diff)
Cleanup: Image: Move to IDTypeInfo and remove unused BKE API.
Diffstat (limited to 'source/blender/blenkernel/BKE_image.h')
-rw-r--r--source/blender/blenkernel/BKE_image.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/source/blender/blenkernel/BKE_image.h b/source/blender/blenkernel/BKE_image.h
index 7ae01484d6f..a082e53cfc1 100644
--- a/source/blender/blenkernel/BKE_image.h
+++ b/source/blender/blenkernel/BKE_image.h
@@ -56,8 +56,6 @@ void BKE_image_free_buffers_ex(struct Image *image, bool do_lock);
/* call from library */
void BKE_image_free(struct Image *image);
-void BKE_image_init(struct Image *image);
-
typedef void(StampCallback)(void *data, const char *propname, char *propvalue, int len);
void BKE_render_result_stamp_info(struct Scene *scene,
@@ -142,8 +140,6 @@ struct anim *openanim_noload(const char *name,
int streamindex,
char colorspace[IMA_MAX_SPACE]);
-void BKE_image_make_local(struct Main *bmain, struct Image *ima, const int flags);
-
void BKE_image_tag_time(struct Image *ima);
/* ********************************** NEW IMAGE API *********************** */
@@ -287,10 +283,6 @@ void BKE_image_packfiles_from_mem(struct ReportList *reports,
void BKE_image_print_memlist(struct Main *bmain);
/* 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);
/* merge source into dest, and free source */