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:
authorCampbell Barton <ideasman42@gmail.com>2007-10-29 01:27:07 +0300
committerCampbell Barton <ideasman42@gmail.com>2007-10-29 01:27:07 +0300
commit7718b3d642566921c47e23359ce17d33b570f617 (patch)
treef9c427c610b24a1adba86b05398c8f484f0d65e5 /source/blender/blenkernel/BKE_image.h
parent47da2813d81b948e9e175e7c01ebaa794db395e1 (diff)
render stamp drawing is now done everywhere - (not just when saving
images) separated stamp metadata and stamp draw functions.
Diffstat (limited to 'source/blender/blenkernel/BKE_image.h')
-rw-r--r--source/blender/blenkernel/BKE_image.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_image.h b/source/blender/blenkernel/BKE_image.h
index 204e956dbc8..b308342ac1e 100644
--- a/source/blender/blenkernel/BKE_image.h
+++ b/source/blender/blenkernel/BKE_image.h
@@ -46,7 +46,8 @@ struct anim;
/* call from library */
void free_image(struct Image *me);
-void BKE_stamp(struct ImBuf *ibuf);
+void BKE_stamp_info(struct ImBuf *ibuf);
+void BKE_stamp_buf(unsigned char *rect, float *rectf, int width, int height);
int BKE_write_ibuf(struct ImBuf *ibuf, char *name, int imtype, int subimtype, int quality);
void BKE_makepicstring(char *string, char *base, int frame, int imtype);
void BKE_add_image_extension(char *string, int imtype);