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/makesdna/DNA_node_types.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/makesdna/DNA_node_types.h')
-rw-r--r--source/blender/makesdna/DNA_node_types.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h
index 63d66f81320..e81da44d033 100644
--- a/source/blender/makesdna/DNA_node_types.h
+++ b/source/blender/makesdna/DNA_node_types.h
@@ -196,5 +196,10 @@ typedef struct NodeHueSat {
float hue, sat, val;
} NodeHueSat;
+typedef struct NodeImageFile {
+ char name[256];
+ short imtype, subimtype, quality, codec;
+} NodeImageFile;
+
#endif