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-10-26 14:13:16 +0400
committerTon Roosendaal <ton@blender.org>2006-10-26 14:13:16 +0400
commit9f77785d7c8362abfb1d712a403e687cbb3d8ac7 (patch)
treebc952e466000047bd8c379cff8697a44ccd1d05a /source/blender/makesdna/DNA_node_types.h
parentf0dcd2db75b488be000a8be310e1c8a65e85227e (diff)
Coding work while on the trip to london (based on Plumiferos wishlist);
- Icon previews for Images were created always for old files, which made browsing (menus) incredible slow. Added a minor change in the flow, so icons only get created when the user invokes loading images. Andrea; you might check this, probably not al cases are covered yet? - Compositor: the 'File Output' node now has a min/max frame for which it writes files - Compositor: fixed a very bad bug (even in 2.42a release) that made the depsgraph for nodes not work... while editing, only the nodes that change should be recalculated, but accidentally all of them were done each time.
Diffstat (limited to 'source/blender/makesdna/DNA_node_types.h')
-rw-r--r--source/blender/makesdna/DNA_node_types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h
index e81da44d033..c7db4a318ac 100644
--- a/source/blender/makesdna/DNA_node_types.h
+++ b/source/blender/makesdna/DNA_node_types.h
@@ -199,6 +199,7 @@ typedef struct NodeHueSat {
typedef struct NodeImageFile {
char name[256];
short imtype, subimtype, quality, codec;
+ int sfra, efra;
} NodeImageFile;
#endif