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:
authorTon Roosendaal <ton@blender.org>2006-08-10 14:38:50 +0400
committerTon Roosendaal <ton@blender.org>2006-08-10 14:38:50 +0400
commit7440aba482f290d14094d17d179a3c3287f3ba19 (patch)
tree0ee2f58e5eb73e4156cc0ab1fe6907a85fd0a1e5 /source/blender/blenkernel/BKE_image.h
parent86d72cb7d48003551269fcf9225037c23e8f0e09 (diff)
Compositor: finished work on node "File Output".
- It saves a file with indicated type on each change, with number appended denoting the current frame (like ANIM saving). - Output filename button supports relative paths ("//") - Shows optional preview image too - For now, added a print on each file save as feedback To make this option work nicely, changed the BKE_makepicstring() function to have less globals inside, so it is more generic. Todo: allow amount of digits in filenames to be set (to support files like tmp_123456.jpg)
Diffstat (limited to 'source/blender/blenkernel/BKE_image.h')
-rw-r--r--source/blender/blenkernel/BKE_image.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_image.h b/source/blender/blenkernel/BKE_image.h
index 8ba0fd73cc4..98a93611204 100644
--- a/source/blender/blenkernel/BKE_image.h
+++ b/source/blender/blenkernel/BKE_image.h
@@ -51,7 +51,7 @@ void free_unused_animimages(void);
struct Image *new_image(int width, int height, char *name, short uvtestgrid);
int BKE_write_ibuf(struct ImBuf *ibuf, char *name, int imtype, int subimtype, int quality);
-void BKE_makepicstring(char *string, int frame);
+void BKE_makepicstring(char *string, char *base, int frame, int imtype);
void BKE_add_image_extension(char *string, int imtype);
int BKE_imtype_is_movie(int imtype);